|
1 | 1 | <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"> |
2 | | - <modelVersion>4.0.0</modelVersion> |
3 | | - <groupId>net.b07z.sepia.server.teach</groupId> |
4 | | - <artifactId>sepia-teach-API</artifactId> |
5 | | - <version>2.0.0</version> |
6 | | - <name>SEPIA Teach APIs</name> |
7 | | - <description>SEPIA APIs to teach the assistant and manage user and community contributions</description> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <groupId>net.b07z.sepia.server.teach</groupId> |
| 4 | + <artifactId>sepia-teach-API</artifactId> |
| 5 | + <version>2.0.0</version> |
| 6 | + <name>SEPIA Teach APIs</name> |
| 7 | + <description>SEPIA APIs to teach the assistant and manage user and community contributions</description> |
8 | 8 |
|
9 | | - <properties> |
10 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
11 | | - <maven.compiler.source>1.8</maven.compiler.source> |
12 | | - <maven.compiler.target>1.8</maven.compiler.target> |
13 | | - </properties> |
| 9 | + <properties> |
| 10 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 11 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 12 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 13 | + </properties> |
14 | 14 |
|
15 | | - <build> |
16 | | - <plugins> |
17 | | - <plugin> |
18 | | - <!-- call 'mvn assembly:assembly -DdescriptorId=jar-with-dependencies' to get the uberjar: --> |
19 | | - <groupId>org.apache.maven.plugins</groupId> |
20 | | - <artifactId>maven-assembly-plugin</artifactId> |
21 | | - <configuration> |
22 | | - <archive> |
23 | | - <manifest> |
24 | | - <mainClass>server.Start</mainClass> |
25 | | - </manifest> |
26 | | - </archive> |
27 | | - </configuration> |
28 | | - </plugin> |
29 | | - </plugins> |
30 | | - </build> |
| 15 | + <build> |
| 16 | + <plugins> |
| 17 | + <plugin> |
| 18 | + <groupId>org.apache.maven.plugins</groupId> |
| 19 | + <artifactId>maven-dependency-plugin</artifactId> |
| 20 | + <version>3.1.0</version> |
| 21 | + <executions> |
| 22 | + <execution> |
| 23 | + <id>copy-dependencies</id> |
| 24 | + <phase>prepare-package</phase> |
| 25 | + <goals> |
| 26 | + <goal>copy-dependencies</goal> |
| 27 | + </goals> |
| 28 | + <configuration> |
| 29 | + <outputDirectory> |
| 30 | + ${project.build.directory}/libs |
| 31 | + </outputDirectory> |
| 32 | + </configuration> |
| 33 | + </execution> |
| 34 | + </executions> |
| 35 | + </plugin> |
| 36 | + <plugin> |
| 37 | + <groupId>org.apache.maven.plugins</groupId> |
| 38 | + <artifactId>maven-jar-plugin</artifactId> |
| 39 | + <version>3.1.0</version> |
| 40 | + <configuration> |
| 41 | + <archive> |
| 42 | + <manifest> |
| 43 | + <addClasspath>true</addClasspath> |
| 44 | + <classpathPrefix>libs/</classpathPrefix> |
| 45 | + <mainClass> |
| 46 | + net.b07z.sepia.server.teach.server.Start |
| 47 | + </mainClass> |
| 48 | + </manifest> |
| 49 | + </archive> |
| 50 | + <finalName>sepia-teach-v${project.version}</finalName> |
| 51 | + </configuration> |
| 52 | + </plugin> |
| 53 | + </plugins> |
| 54 | + </build> |
31 | 55 |
|
32 | 56 | <dependencies> |
33 | 57 | <dependency> |
34 | 58 | <groupId>net.b07z.sepia.server.core</groupId> |
35 | 59 | <artifactId>sepia-core-tools</artifactId> |
36 | | - <version>2.0.0</version> |
| 60 | + <version>2.0.1</version> |
37 | 61 | </dependency> |
38 | 62 | </dependencies> |
39 | 63 |
|
|
0 commit comments