sparta
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.mattzhongchang</groupId>
<artifactId>sparta</artifactId>
<version>1.3.10-RELEASE</version>
</dependency><?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>com.github.mattzhongchang</groupId>
<artifactId>sparta</artifactId>
<packaging>pom</packaging>
<version>1.3.10-RELEASE</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>sparta</description>
<url>https://gitee.com/mattzhongchang/sparta</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>zhongchang</name>
<email>2252569429@qq.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://gitee.com/mattzhongchang/sparta.git</connection>
<developerConnection>scm:git:ssh://gitee.com/mattzhongchang/sparta.git</developerConnection>
<url>https://gitee.com/mattzhongchang/sparta</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<!-- <activation>-->
<!-- <activeByDefault>true</activeByDefault>-->
<!-- </activation>-->
<!-- <properties>-->
<!-- <gpg.executable>gpg.exe</gpg.executable>-->
<!-- <gpg.passphrase>gp@matt123gp</gpg.passphrase>-->
<!-- </properties>-->
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<modules>
<module>sparta-core</module>
<module>sparta-registry</module>
<module>sparta-serializer</module>
<module>sparta-springsupport</module>
<module>sparta-demo</module>
</modules>
<properties>
<java.version>1.8</java.version>
<netty.version> 4.1.12.Final</netty.version>
<hessian.version>4.0.38</hessian.version>
<protostuff.version>1.0.12</protostuff.version>
<kryo.version>4.0.0</kryo.version>
<jackson.version>2.8.8</jackson.version>
<fastjson.version>1.2.31</fastjson.version>
<msgpack.version>0.8.12</msgpack.version>
<fst.version>2.50</fst.version>
<guava.version>18.0</guava.version>
<objenesis.version>2.5.1</objenesis.version>
<zookeeper.version>3.4.8</zookeeper.version>
<slf4j.version>1.7.25</slf4j.version>
<springframework.version>4.3.6.RELEASE</springframework.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<testSource>${java.version}</testSource>
<testTarget>${java.version}</testTarget>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
<!-- mvn clean deploy -P release-->
<!--
-->
</project>