-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
123 lines (123 loc) · 6.64 KB
/
pom.xml
File metadata and controls
123 lines (123 loc) · 6.64 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cl_api</groupId>
<artifactId>cl_api</artifactId>
<version>1.0.1 beta</version>
<dependencies>
<dependency>
<groupId>server_http</groupId>
<artifactId>server_http</artifactId>
<version>0.0.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/server_http.jar</systemPath>
</dependency>
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>kryonet</artifactId>
<version>2.22.0-RC1</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>Core.Main</mainClass>
<addClasspath>true</addClasspath>
</manifest>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>compile</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>Clean target folder</echo>
<delete dir="${project.build.directory}/classes" includeemptydirs="true"/>
<delete dir="${project.build.directory}/surefire" includeemptydirs="true"/>
<delete dir="${project.build.directory}/maven-status" includeemptydirs="true"/>
<delete dir="${project.build.directory}/archive-tmp" includeemptydirs="true"/>
<delete dir="${project.build.directory}/generated-sources" includeemptydirs="true"/>
<delete file="${project.build.directory}/${artifactId}-${version}.jar"/>
<echo>Make architecture</echo>
<copy file="${project.build.directory}/${artifactId}-${version}-jar-with-dependencies.jar"
tofile="${project.build.directory}/${artifactId}.jar"/>
<delete file="${project.build.directory}/${artifactId}-${version}-jar-with-dependencies.jar"/>
<copy file="${project.build.directory}/${artifactId}.jar"
tofile="${project.build.directory}/plugins/${artifactId}.jar"/>
<delete file="${project.build.directory}/${artifactId}.jar"/>
<copy file="./lib/server_http.jar"
tofile="${project.build.directory}/${artifactId}.jar"/>
<echo>Add Config file</echo>
<copy file="./config.properties" tofile="${project.build.directory}/config.properties"/>
<echo>Add Routes file</echo>
<copy file="./route.properties" tofile="${project.build.directory}/route.properties"/>
<echo>Add Ip file</echo>
<copy file="./ip.properties" tofile="${project.build.directory}/ip.properties"/>
<echo>Add Database</echo>
<copy file="./db/db_SQLite.db" tofile="${project.build.directory}/db/db_SQLite.db"/>
<copy file="./db/db_SQLite_empty.db" tofile="${project.build.directory}/db/db_SQLite_empty.db"/>
<copy file="./db/v2/SQLite.sql" tofile="${project.build.directory}/sql_script/SQLite.sql"/>
<copy file="./db/v2/MySQL.sql" tofile="${project.build.directory}/sql_script/MySQL.sql"/>
<copy file="./db/v2/PostgreSQL.sql" tofile="${project.build.directory}/sql_script/PostgreSQL.sql"/>
<echo>Add Launcher script</echo>
<copy file="./scripts/launcher.bat" tofile="${project.build.directory}/launcher.bat"/>
<copy file="./scripts/launcher.sh" tofile="${project.build.directory}/launcher.sh"/>
<echo>Add codes examples</echo>
<copy file="./examples/AngularJS/oauth.html" tofile="${project.build.directory}/examples/AngularJS/oauth.html"/>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>