|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | | - <groupId>com.codingame</groupId> |
6 | | - <artifactId>gameengine</artifactId> |
7 | | - <version>master-SNAPSHOT</version> |
8 | | - <packaging>pom</packaging> |
| 5 | + <groupId>com.codingame</groupId> |
| 6 | + <artifactId>gameengine</artifactId> |
| 7 | + <version>master-SNAPSHOT</version> |
| 8 | + <packaging>pom</packaging> |
9 | 9 | <name>CodinGame Game Engine</name> |
10 | 10 | <description>Parent and Reactor Project of the CodinGame engine toolkit.</description> |
11 | 11 | <url>https://www.codingame.com</url> |
12 | 12 |
|
13 | | - <properties> |
14 | | - <maven.compiler.source>1.8</maven.compiler.source> |
15 | | - <maven.compiler.target>1.8</maven.compiler.target> |
16 | | - </properties> |
| 13 | + <properties> |
| 14 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 15 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 16 | + </properties> |
17 | 17 |
|
18 | | - <modules> |
19 | | - <module>engine/core</module> |
20 | | - <module>engine/modules/entities</module> |
21 | | - <module>engine/modules/endscreen</module> |
22 | | - <module>engine/modules/toggle</module> |
23 | | - <module>engine/modules/tooltip</module> |
24 | | - <module>engine/modules/viewport</module> |
25 | | - <module>engine/community-modules/camera</module> |
26 | | - <module>runner</module> |
27 | | - </modules> |
| 18 | + <modules> |
| 19 | + <module>engine/core</module> |
| 20 | + <module>engine/modules/entities</module> |
| 21 | + <module>engine/modules/endscreen</module> |
| 22 | + <module>engine/modules/toggle</module> |
| 23 | + <module>engine/modules/tooltip</module> |
| 24 | + <module>engine/modules/viewport</module> |
| 25 | + <module>engine/community-modules/camera</module> |
| 26 | + <module>runner</module> |
| 27 | + </modules> |
28 | 28 |
|
29 | | - <licenses> |
30 | | - <license> |
31 | | - <name>MIT License</name> |
32 | | - <url>http://www.opensource.org/licenses/mit-license.php</url> |
33 | | - </license> |
34 | | - </licenses> |
| 29 | + <licenses> |
| 30 | + <license> |
| 31 | + <name>MIT License</name> |
| 32 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 33 | + </license> |
| 34 | + </licenses> |
35 | 35 |
|
36 | | - <scm> |
37 | | - <connection>https://github.com/CodinGame/codingame-game-engine.git</connection> |
38 | | - <developerConnection>https://github.com/CodinGame/codingame-game-engine.git</developerConnection> |
39 | | - <url>https://github.com/CodinGame/codingame-game-engine</url> |
40 | | - </scm> |
| 36 | + <scm> |
| 37 | + <connection>https://github.com/CodinGame/codingame-game-engine.git</connection> |
| 38 | + <developerConnection>https://github.com/CodinGame/codingame-game-engine.git</developerConnection> |
| 39 | + <url>https://github.com/CodinGame/codingame-game-engine</url> |
| 40 | + </scm> |
41 | 41 |
|
42 | | - <developers> |
43 | | - <developer> |
44 | | - |
45 | | - <name>The CodinGame Team</name> |
46 | | - <url>https://github.com/CodinGame</url> |
47 | | - </developer> |
48 | | - </developers> |
| 42 | + <developers> |
| 43 | + <developer> |
| 44 | + |
| 45 | + <name>The CodinGame Team</name> |
| 46 | + <url>https://github.com/CodinGame</url> |
| 47 | + </developer> |
| 48 | + </developers> |
49 | 49 |
|
50 | | - <distributionManagement> |
51 | | - <snapshotRepository> |
52 | | - <id>ossrh</id> |
53 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
54 | | - </snapshotRepository> |
55 | | - <repository> |
56 | | - <id>ossrh</id> |
57 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
58 | | - </repository> |
59 | | - </distributionManagement> |
| 50 | + <distributionManagement> |
| 51 | + <snapshotRepository> |
| 52 | + <id>ossrh</id> |
| 53 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 54 | + </snapshotRepository> |
| 55 | + <repository> |
| 56 | + <id>ossrh</id> |
| 57 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 58 | + </repository> |
| 59 | + </distributionManagement> |
60 | 60 |
|
61 | | - <build> |
62 | | - <plugins> |
63 | | - <plugin> |
64 | | - <groupId>org.sonatype.plugins</groupId> |
65 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
66 | | - <version>1.6.7</version> |
67 | | - <extensions>true</extensions> |
68 | | - <configuration> |
69 | | - <serverId>ossrh</serverId> |
70 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
71 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
72 | | - </configuration> |
73 | | - </plugin> |
74 | | - <plugin> |
75 | | - <groupId>org.apache.maven.plugins</groupId> |
76 | | - <artifactId>maven-source-plugin</artifactId> |
77 | | - <version>3.0.1</version> |
78 | | - <executions> |
79 | | - <execution> |
80 | | - <id>attach-sources</id> |
81 | | - <goals> |
82 | | - <goal>jar</goal> |
83 | | - </goals> |
84 | | - </execution> |
85 | | - </executions> |
86 | | - </plugin> |
87 | | - <plugin> |
88 | | - <groupId>org.apache.maven.plugins</groupId> |
89 | | - <artifactId>maven-javadoc-plugin</artifactId> |
90 | | - <version>3.0.0</version> |
91 | | - <executions> |
92 | | - <execution> |
93 | | - <id>attach-javadocs</id> |
94 | | - <goals> |
95 | | - <goal>jar</goal> |
96 | | - </goals> |
97 | | - </execution> |
98 | | - </executions> |
99 | | - </plugin> |
100 | | - <plugin> |
101 | | - <groupId>org.apache.maven.plugins</groupId> |
102 | | - <artifactId>maven-gpg-plugin</artifactId> |
103 | | - <version>1.5</version> |
104 | | - <executions> |
105 | | - <execution> |
106 | | - <id>sign-artifacts</id> |
107 | | - <phase>verify</phase> |
108 | | - <goals> |
109 | | - <goal>sign</goal> |
110 | | - </goals> |
111 | | - </execution> |
112 | | - </executions> |
113 | | - </plugin> |
114 | | - </plugins> |
115 | | - </build> |
| 61 | + <build> |
| 62 | + <plugins> |
| 63 | + <plugin> |
| 64 | + <groupId>org.sonatype.plugins</groupId> |
| 65 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 66 | + <version>1.6.7</version> |
| 67 | + <extensions>true</extensions> |
| 68 | + <configuration> |
| 69 | + <serverId>ossrh</serverId> |
| 70 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 71 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 72 | + </configuration> |
| 73 | + </plugin> |
| 74 | + <plugin> |
| 75 | + <groupId>org.apache.maven.plugins</groupId> |
| 76 | + <artifactId>maven-source-plugin</artifactId> |
| 77 | + <version>3.0.1</version> |
| 78 | + <executions> |
| 79 | + <execution> |
| 80 | + <id>attach-sources</id> |
| 81 | + <goals> |
| 82 | + <goal>jar</goal> |
| 83 | + </goals> |
| 84 | + </execution> |
| 85 | + </executions> |
| 86 | + </plugin> |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 90 | + <version>3.0.0</version> |
| 91 | + <executions> |
| 92 | + <execution> |
| 93 | + <id>attach-javadocs</id> |
| 94 | + <goals> |
| 95 | + <goal>jar</goal> |
| 96 | + </goals> |
| 97 | + </execution> |
| 98 | + </executions> |
| 99 | + </plugin> |
| 100 | + <plugin> |
| 101 | + <groupId>org.apache.maven.plugins</groupId> |
| 102 | + <artifactId>maven-gpg-plugin</artifactId> |
| 103 | + <version>1.5</version> |
| 104 | + <executions> |
| 105 | + <execution> |
| 106 | + <id>sign-artifacts</id> |
| 107 | + <phase>verify</phase> |
| 108 | + <goals> |
| 109 | + <goal>sign</goal> |
| 110 | + </goals> |
| 111 | + </execution> |
| 112 | + </executions> |
| 113 | + </plugin> |
| 114 | + </plugins> |
| 115 | + </build> |
116 | 116 | </project> |
0 commit comments