Skip to content

Instantly share code, notes, and snippets.

@v0y4g3r
v0y4g3r / pom.xml
Created October 26, 2017 07:06
[netty-spring-pom]#java #maven #pom #netty #spring
<?xml version="1.0" encoding="UTF-8"?>
<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>edu.pkusz.netlab</groupId>
<artifactId></artifactId>
<version>1.0-SNAPSHOT</version>
@v0y4g3r
v0y4g3r / pom.xml
Created October 17, 2017 08:43
[Maven shade plugin] #java #maven
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
@v0y4g3r
v0y4g3r / pom.xml
Created October 12, 2017 03:11
[阿里云Maven仓库配置] #maven #java
<project>
<!-- 阿里云maven仓库 -->
<repositories>
<repository>
<id>public</id>
<name>aliyun nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>