forked from yint-tech/sekiro-open
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
37 lines (36 loc) · 1.31 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.virjar.sekiro.business</groupId>
<artifactId>sekiro-demo-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<modules>
<module>samples</module>
<module>sekiro-service-demo</module>
</modules>
<name>Sekiro</name>
<description>
This is demo version of Sekiro system, a RPC framework to export private api for remote
endpoint(android、IOS、browser...)
</description>
<url>https://github.com/virjar/sekiro</url>
<properties>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>