Skip to content

Commit

Permalink
make xpocket-sdk to be a independent jar
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Jun 27, 2021
1 parent 4e18008 commit 01baef3
Showing 1 changed file with 29 additions and 20 deletions.
49 changes: 29 additions & 20 deletions xpocket-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,20 @@
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>
<parent>
<groupId>com.perfma.xlab</groupId>
<artifactId>xpocket-parent</artifactId>
<version>2.1.0-RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.perfma.xlab</groupId>
<artifactId>xpocket-sdk</artifactId>
<version>2.1.0-RELEASE</version>

<name>xpocket-sdk</name>
<name>${project.groupId}:${project.artifactId}</name>
<description>XPocket SDK Definition</description>
<url>https://github.com/PerfMa/xpocket</url>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.deploy.skip>false</maven.deploy.skip>
</properties>

<licenses>
<license>
<name>Apache License</name>
Expand All @@ -38,36 +39,43 @@
<url>https://github.com/PerfMa/xpocket</url>
</scm>

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
</properties>

<dependencies>
<dependency>
<groupId>com.perfma.xlab</groupId>
<artifactId>xpocket-plugin-spi</artifactId>
<artifactId>xpocket-plugin-spi</artifactId>
<version>2.1.0-RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.perfma.xlab</groupId>
<artifactId>xpocket-framework-spi</artifactId>
<artifactId>xpocket-framework-spi</artifactId>
<version>2.1.0-RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.perfma.xlab</groupId>
<artifactId>xpocket-runtime</artifactId>
<artifactId>xpocket-runtime</artifactId>
<version>2.1.0-RELEASE</version>
</dependency>
</dependencies>
<build>
<!--<finalName>${project.name}-${version}</finalName>-->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>8</source>
<target>8</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -99,7 +107,8 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<goals>
Expand All @@ -117,4 +126,4 @@
</plugins>
</build>

</project>
</project>

0 comments on commit 01baef3

Please sign in to comment.