1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <name >Java Express</name >
8+ <description >HTTP Framework based on expressjs, no dependencies, simple usage.</description >
9+ <url >https://github.com/Simonwep/java-express</url >
10+ <groupId >com.github.Simonwep</groupId >
11+ <artifactId >java-express</artifactId >
12+ <packaging >jar</packaging >
13+ <version >0.0.10</version >
14+
15+ <build >
16+ <plugins >
17+ <plugin >
18+ <groupId >org.apache.maven.plugins</groupId >
19+ <artifactId >maven-compiler-plugin</artifactId >
20+ <configuration >
21+ <source >1.8</source >
22+ <target >1.8</target >
23+ </configuration >
24+ </plugin >
25+ <plugin >
26+ <groupId >org.sonatype.plugins</groupId >
27+ <artifactId >nexus-staging-maven-plugin</artifactId >
28+ <version >1.6.7</version >
29+ <extensions >true</extensions >
30+ <configuration >
31+ <serverId >ossrh</serverId >
32+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
33+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
34+ </configuration >
35+ </plugin >
36+ <plugin >
37+ <groupId >org.apache.maven.plugins</groupId >
38+ <artifactId >maven-source-plugin</artifactId >
39+ <version >3.0.1</version >
40+ <executions >
41+ <execution >
42+ <id >attach-sources</id >
43+ <goals >
44+ <goal >jar-no-fork</goal >
45+ </goals >
46+ </execution >
47+ </executions >
48+ </plugin >
49+ <plugin >
50+ <groupId >org.apache.maven.plugins</groupId >
51+ <artifactId >maven-javadoc-plugin</artifactId >
52+ <version >3.1.0</version >
53+ <executions >
54+ <execution >
55+ <id >attach-javadocs</id >
56+ <goals >
57+ <goal >jar</goal >
58+ </goals >
59+ </execution >
60+ </executions >
61+ </plugin >
62+ <plugin >
63+ <groupId >org.apache.maven.plugins</groupId >
64+ <artifactId >maven-gpg-plugin</artifactId >
65+ <version >1.6</version >
66+ <executions >
67+ <execution >
68+ <id >sign-artifacts</id >
69+ <phase >verify</phase >
70+ <goals >
71+ <goal >sign</goal >
72+ </goals >
73+ </execution >
74+ </executions >
75+ </plugin >
76+ </plugins >
77+ </build >
78+
79+ <distributionManagement >
80+ <snapshotRepository >
81+ <id >ossrh</id >
82+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
83+ </snapshotRepository >
84+ <repository >
85+ <id >ossrh</id >
86+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
87+ </repository >
88+ </distributionManagement >
89+
90+ <licenses >
91+ <license >
92+ <name >MIT License</name >
93+ <url >https://opensource.org/licenses/MIT</url >
94+ <distribution >repo</distribution >
95+ </license >
96+ </licenses >
97+
98+ <developers >
99+ <developer >
100+ <name >Simon Reinisch</name >
101+ 102+ <organization >com.github.Simonwep</organization >
103+ <organizationUrl >https://github.com/Simonwep/java-express</organizationUrl >
104+ </developer >
105+ </developers >
106+
107+ <scm >
108+ <connection >scm:git:git://github.com/sSimonwep/java-express.git</connection >
109+ <developerConnection >scm:git:ssh://github.com:Simonwep/java-express.git</developerConnection >
110+ <url >http://github.com/Simonwep/java-express/tree/master</url >
111+ </scm >
112+ </project >
0 commit comments