This commit is contained in:
RedKale
2016-02-24 14:04:20 +08:00
parent 78b4d08761
commit 91d7d2797d

314
pom.xml
View File

@@ -1,161 +1,155 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<groupId>org.redkale</groupId> <groupId>org.redkale</groupId>
<artifactId>redkale</artifactId> <artifactId>redkale</artifactId>
<name>Redkale</name> <name>Redkale</name>
<packaging>jar</packaging> <packaging>jar</packaging>
<url>http://redkale.org</url> <url>http://redkale.org</url>
<!-- -SNAPSHOT -->
<version>1.0.0-beta</version> <version>1.0.0-beta-SNAPSHOT</version>
<description>Redkale 是基于Java 8全新的微服务开源框架</description> <description>Redkale 是基于Java 8全新的微服务开源框架</description>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
</properties> </properties>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version> <version>3.5.1</version>
<configuration> <configuration>
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
<compilerArguments> <compilerArguments>
<verbose /> <verbose />
<bootclasspath>${java.home}/lib/rt.jar</bootclasspath> <bootclasspath>${java.home}/lib/rt.jar</bootclasspath>
</compilerArguments> </compilerArguments>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>2.6</version> <version>2.6</version>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<mainClass>org.redkale.boot.Application</mainClass> <mainClass>org.redkale.boot.Application</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version> <version>3.0.0</version>
<executions> <executions>
<execution> <execution>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version> <version>2.10.3</version>
<configuration> <configuration>
<charset>${file_encoding}</charset> <charset>${file_encoding}</charset>
<encoding>${file_encoding}</encoding> <encoding>${file_encoding}</encoding>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<id>attach-javadocs</id> <id>attach-javadocs</id>
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.codehaus.plexus</groupId> <groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-javac</artifactId> <artifactId>plexus-compiler-javac</artifactId>
<version>2.7</version> <version>2.7</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.codehaus.plexus</groupId> <groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId> <artifactId>plexus-utils</artifactId>
<version>3.0.22</version> <version>3.0.22</version>
</dependency> </dependency>
</dependencies> </dependencies>
<profiles> <profiles>
<profile> <profile>
<id>release-sign-artifacts</id> <id>release-sign-artifacts</id>
<activation> <activation>
<property> <property>
<name>performRelease</name> <name>performRelease</name>
<value>true</value> <value>true</value>
</property> </property>
</activation> </activation>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId> <artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version> <version>1.6</version>
<executions> <executions>
<execution> <execution>
<id>sign-artifacts</id> <id>sign-artifacts</id>
<phase>verify</phase> <phase>verify</phase>
<goals> <goals>
<goal>sign</goal> <goal>sign</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</profile> </profile>
</profiles> </profiles>
<parent> <scm>
<groupId>org.sonatype.oss</groupId> <url>https://github.com/redkale/redkale.git</url>
<artifactId>oss-parent</artifactId> <connection>https://github.com/redkale/redkale.git</connection>
<version>9</version> </scm>
</parent>
<developers>
<scm> <developer>
<url>https://github.com/redkale/redkale.git</url> <id>redkale</id>
<connection>https://github.com/redkale/redkale.git</connection> <name>redkale</name>
</scm> <email>redkale@qq.com</email>
</developer>
<developers> </developers>
<developer>
<id>redkale</id> <licenses>
<name>redkale</name> <license>
<email>redkale@qq.com</email> <name>Apache 2</name>
</developer> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</developers> <distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
<licenses> </license>
<license> </licenses>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distributionManagement>
<distribution>repo</distribution> <snapshotRepository>
<comments>A business-friendly OSS license</comments> <id>ossrh</id>
</license> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
</licenses> </snapshotRepository>
<repository>
<distributionManagement> <id>ossrh</id>
<snapshotRepository> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<id>ossrh</id> </repository>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> </distributionManagement>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project> </project>