Skip to content

LubinLew/build-marshalsec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

build marshalsec on CentOS7

build https://github.com/mbechler/marshalsec.git

install JDK

Download Java SE Development Kit 15

install Maven

wget https://apachemirror.sg.wuchna.com/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz
tar xf apache-maven-3.6.3-bin.tar.gz -C /usr/local
mv /usr/local/apache-maven-3.6.3 /usr/local/maven
mkdir -p /usr/local/maven/repo

echo "export "MAVEN_HOME=/usr/local/maven" >> /etc/profile
echo "export "PATH=$PATH:$MAVEN_HOME/bin" >> /etc/profile
source /etc/profile

config Maven

#  /usr/local/maven/conf/settings.xml

<localRepository>/usr/local/maven/repo</localRepository>


<mirror>
  <id>alimaven</id>
  <name>aliyun-maven-mirror</name>
  <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  <mirrorOf>central</mirrorOf>
</mirror>

BUILD

mvn clean package -DskipTests

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published