@ Download last version of Artifactory the following URL
@ http://sourceforge.net/projects/artifactory/files/artifactory/
@ Change the user(as root)
$ sudo -s
@ uncompress the file
$ unzip ./artifactory-3.2.1.1.zip
@ Move and change the artifactory
$ mv ./artifactory-3.2.1.1 /usr/local/artifactory
@ Execute the shell
$ /usr/local/artifactory/bin/installService.sh
@ Start the artifactory
$ /etc/init.d/artifactory start
Hi, I'm an architecture engineer and native Korean speaker.
I have started to live in Seoul in Korea.
I have been developping Abilists tool,
Please feel free to visit abilists.com
Showing posts with label Maven. Show all posts
Showing posts with label Maven. Show all posts
Thursday, June 19, 2014
Monday, April 21, 2014
Maven - Configuration setting.xml
@ For maven3
Wednesday, January 29, 2014
Maven - Install Jar files into the local system without the test.
$ mvn clean install -DskipTests
Monday, January 27, 2014
Troubleshooting - Maven
@If you get an error the following error(or OutOfMemory) in Maven Compile and Test.
-----------------------------------------------------------------------------------------
Exception in thread "main" java.lang.StackOverflowError
at sun.nio.cs.UTF_8.updatePositions(UTF_8.java:77)
at sun.nio.cs.UTF_8$Encoder.encodeArrayLoop(UTF_8.java:564)
at sun.nio.cs.UTF_8$Encoder.encodeLoop(UTF_8.java:619)
at java.nio.charset.CharsetEncoder.encode(CharsetEncoder.java:561)
at sun.nio.cs.StreamEncoder.implWrite(StreamEncoder.java:271)
at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:125)
at java.io.OutputStreamWriter.write(OutputStreamWriter.java:207)
at java.io.BufferedWriter.flushBuffer(BufferedWriter.java:129)
at java.io.PrintStream.write(PrintStream.java:526)
at java.io.PrintStream.print(PrintStream.java:669)
at java.io.PrintStream.println(PrintStream.java:806)
at org.apache.maven.cli.PrintStreamLogger.info(PrintStreamLogger.java:111)
at org.codehaus.plexus.logging.AbstractLogger.info(AbstractLogger.java:51)
at org.codehaus.plexus.archiver.AbstractArchiver$1.hasNext(AbstractArchiver.java:478)
at org.codehaus.plexus.archiver.AbstractArchiver$1.hasNext(AbstractArchiver.java:481)
-----------------------------------------------------------------------------------------
@Solution
In your mvn.sh add this as the first line after the copyright and other comments.
#-----------------------------------------------------------------------------------------
export MAVEN_OPTS="-Xms128m -Xmx1024m -Xss128m"
#-----------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------
Exception in thread "main" java.lang.StackOverflowError
at sun.nio.cs.UTF_8.updatePositions(UTF_8.java:77)
at sun.nio.cs.UTF_8$Encoder.encodeArrayLoop(UTF_8.java:564)
at sun.nio.cs.UTF_8$Encoder.encodeLoop(UTF_8.java:619)
at java.nio.charset.CharsetEncoder.encode(CharsetEncoder.java:561)
at sun.nio.cs.StreamEncoder.implWrite(StreamEncoder.java:271)
at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:125)
at java.io.OutputStreamWriter.write(OutputStreamWriter.java:207)
at java.io.BufferedWriter.flushBuffer(BufferedWriter.java:129)
at java.io.PrintStream.write(PrintStream.java:526)
at java.io.PrintStream.print(PrintStream.java:669)
at java.io.PrintStream.println(PrintStream.java:806)
at org.apache.maven.cli.PrintStreamLogger.info(PrintStreamLogger.java:111)
at org.codehaus.plexus.logging.AbstractLogger.info(AbstractLogger.java:51)
at org.codehaus.plexus.archiver.AbstractArchiver$1.hasNext(AbstractArchiver.java:478)
at org.codehaus.plexus.archiver.AbstractArchiver$1.hasNext(AbstractArchiver.java:481)
-----------------------------------------------------------------------------------------
@Solution
In your mvn.sh add this as the first line after the copyright and other comments.
#-----------------------------------------------------------------------------------------
export MAVEN_OPTS="-Xms128m -Xmx1024m -Xss128m"
#-----------------------------------------------------------------------------------------
Monday, December 9, 2013
Gradle - Add the jars to the dependencies in Eclipse
You need to install the [https://github.com/spring-projects/eclipse-integration-gradle]
I installed this version[http://dist.springsource.com/release/TOOLS/gradle]
build.gradle
$ gradle cleanEclipse eclipse
You can see jars file in the Eclipse
Subscribe to:
Posts (Atom)