2020-11-03 14:01:20 +08:00
|
|
|
|
<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>
|
2021-11-13 17:31:11 +08:00
|
|
|
|
<groupId>com.dust.tripartite</groupId>
|
2020-11-03 14:01:20 +08:00
|
|
|
|
<artifactId>protostar</artifactId>
|
2021-10-27 17:41:25 +08:00
|
|
|
|
<version>2.0.7.RELEASE</version>
|
2020-11-03 14:01:20 +08:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>Protostar</name>
|
|
|
|
|
<description>Java serialization library,write in bytecode order.</description>
|
|
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<resource.delimiter>@</resource.delimiter>
|
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
2021-10-27 17:41:25 +08:00
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2020-11-03 14:01:20 +08:00
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
2021-05-25 14:11:08 +08:00
|
|
|
|
<version>4.13.2</version>
|
2020-11-03 14:01:20 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2020-11-03 15:30:46 +08:00
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2021-07-23 09:39:52 +08:00
|
|
|
|
<version>1.7.32</version>
|
2020-11-03 14:01:20 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2021-07-23 09:39:52 +08:00
|
|
|
|
<version>1.7.32</version>
|
2020-11-03 14:01:20 +08:00
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty-buffer</artifactId>
|
2021-10-27 17:41:25 +08:00
|
|
|
|
<version>4.1.69.Final</version>
|
2020-11-12 16:52:41 +08:00
|
|
|
|
<scope>provided</scope>
|
2020-11-03 14:01:20 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
2021-11-13 17:31:11 +08:00
|
|
|
|
<id>nexus-releases</id>
|
2020-11-03 14:01:20 +08:00
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>3.2.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>3.2.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.8</source>
|
|
|
|
|
<target>1.8</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!--Release -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
|
<version>2.5.3</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
|
<version>2.8.2</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>default-deploy</id>
|
|
|
|
|
<phase>deploy</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>deploy</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
2021-11-13 17:31:11 +08:00
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
2023-05-25 17:12:39 +08:00
|
|
|
|
<id>store</id>
|
|
|
|
|
<url>http://117.33.142.185:8081/repository/store/</url>
|
2021-11-13 17:31:11 +08:00
|
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
2023-05-25 17:12:39 +08:00
|
|
|
|
<id>store</id>
|
|
|
|
|
<url>http://117.33.142.185:8081/repository/store/</url>
|
2021-11-13 17:31:11 +08:00
|
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
2020-11-03 14:01:20 +08:00
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
2023-05-25 17:12:39 +08:00
|
|
|
|
<id>maven-public</id>
|
|
|
|
|
<url>http://117.33.142.185:8081/repository/maven-public/</url>
|
2021-11-13 17:31:11 +08:00
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</snapshots>
|
2023-05-25 17:12:39 +08:00
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
2020-11-03 14:01:20 +08:00
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
</project>
|