-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
112 lines (93 loc) · 3.05 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
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
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.haumacher.games</groupId>
<artifactId>wizard-parent</artifactId>
<version>1.0.10-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>client</module>
<module>server</module>
<module>common</module>
</modules>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<project.scm.id>github-haumacher</project.scm.id>
<wizard.version>${project.version}</wizard.version>
<msgbuf.version>1.1.2</msgbuf.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.haumacher.games</groupId>
<artifactId>wizard-common</artifactId>
<version>${wizard.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<scm>
<tag>v1.0.2</tag>
<url>https://github.com/haumacher/wizard-game</url>
<connection>scm:git:https://github.com/haumacher/wizard-game.git</connection>
<developerConnection>scm:git:https://github.com/haumacher/wizard-game.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>com.ragedunicorn.tools.maven</groupId>
<artifactId>github-release-maven-plugin</artifactId>
<version>1.0.3</version>
<executions>
<execution>
<id>create-github-release</id>
<goals>
<goal>github-release</goal>
</goals>
<inherited>false</inherited>
</execution>
</executions>
<inherited>false</inherited>
<configuration>
<name>Wizard ${project.version}</name>
<tagName>v${project.version}</tagName>
<draft>true</draft>
<server>github-haumacher</server>
<repository>wizard-game</repository>
<owner>haumacher</owner>
<targetCommitish>master</targetCommitish>
<releaseNotes>release-notes.md</releaseNotes>
<assets>
<asset>${basedir}/client/target/wizard-client-${project.version}.jar/</asset>
<asset>${basedir}/client/target/Zauberer-${project.version}.exe</asset>
<asset>${basedir}/server/target/wizard-server-${project.version}-full.jar/</asset>
<asset>${basedir}/server/target/wizard-server-${project.version}.war/</asset>
</assets>
</configuration>
</plugin>
</plugins>
</build>
</project>