用過spring boot的同窗確定知道,如今web項目能夠直接打成jar包運行,至關方便。java
那麼普通項目如何配置(非spring boot),才能打成一個相似的jar包呢?git
在pom中的build中進行以下配置便可:github
<plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <!--這裏指定要運行的main類--> <mainClass>netty.client.TcpClient809</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <!-- 此處指定繼承合併 --> <phase>package</phase> <!-- 綁定到打包階段 --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins>
If you need to download the jars instead of using a build system, create a Maven pom file like this with the desired version:web
<?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.netflix.hystrix.download</groupId> <artifactId>hystrix-download</artifactId> <version>1.0-SNAPSHOT</version> <name>Simple POM to download hystrix-core and dependencies</name> <url>http://github.com/Netflix/Hystrix</url> <dependencies> <dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-core</artifactId> <version>x.y.z</version> <scope/> </dependency> </dependencies> </project>
Then execute:spring
mvn -f download-hystrix-pom.xml dependency:copy-dependencies
It will download hystrix-core-*.jar and its dependencies into ./target/dependency/.apache
You need Java 6 or later.maven