如何发布一个pom项目且打包maven源码,将源码包与jar包一同deploy到mavenserver
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
?
<modelVersion>4.0.0</modelVersion><!--
<parent>
<groupId>com.ttt</groupId>
<artifactId>frontend-parent</artifactId>
<version>1.1-SNAPSHOT</version>
</parent>
-->
<groupId>com.taobao.meirong</groupId>
<artifactId>comment-client</artifactId>
<url>http://www.taobao.com</url>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
?
<dependencies>
<dependency>
<groupId>com.taobao.vsearch</groupId>
<artifactId>vsearch-client</artifactId>
<version>1.2.12-SNAPSHOT</version>
</dependency>
<dependency>
? ?<groupId>net.sf.json-lib</groupId>
? <artifactId>json-lib</artifactId>
? <version>2.2.3</version>
</dependency>
<dependency>
?<groupId>log4j</groupId>
?<artifactId>log4j</artifactId>
?<version>1.2.14</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>2.5.6.SEC02</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.11</version>
</dependency>
?
?
<dependency>
?<groupId>org.slf4j</groupId>
?<artifactId>slf4j-api</artifactId>
?<version>1.5.11</version>
?</dependency>
?
? ?
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
? ? ? ? ? ? ? ? <artifactId>maven-compiler-plugin</artifactId>
? ? ? ? ? ? ? ? <configuration>
? ? ? ? ? ? ? ? ? ? <source>1.6</source>
? ? ? ? ? ? ? ? ? ? <target>1.6</target>
? ? ? ? ? ? ? ? </configuration>
? ? ? ? ? ? </plugin>
? ? ? ? ? ? <plugin> ?
? ? ? ? ? ? ? ? <artifactId>maven-source-plugin</artifactId> ?
? ? ? ? ? ? ? ? <version>2.1</version> ?
? ? ? ? ? ? ? ? <configuration> ?
? ? ? ? ? ? ? ? ? ? <attach>true</attach> ?
? ? ? ? ? ? ? ? </configuration> ?
? ? ? ? ? ? ? ? <executions> ?
? ? ? ? ? ? ? ? ? ? <execution> ?
? ? ? ? ? ? ? ? ? ? ? ? <phase>compile</phase> ?
? ? ? ? ? ? ? ? ? ? ? ? <goals> ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? <goal>jar</goal> ?
? ? ? ? ? ? ? ? ? ? ? ? </goals> ?
? ? ? ? ? ? ? ? ? ? </execution> ?
? ? ? ? ? ? ? ? </executions> ?
? ? ? ? ? ? </plugin> ? ? ? ? ? ??
</plugins>
</build>
<distributionManagement>
?<repository>
? ?<id>releases</id>
? ?<name>Search Book Replace Plugin</name>
? ?<url>http://mvnrepo.taobao.ali.com/mvn/releases</url>
?</repository>
?<!--?
? use the following if you ARE using a snapshot version. -->
?<snapshotRepository>
? ?<id>snapshots</id>
? ?<name>Search Book Replace Plugin</name>
? ?<url>http://mvnrepo.taobao.ali.com/mvn/snapshots</url>
?</snapshotRepository>
?
</distributionManagement>
</project>