-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
111 lines (100 loc) · 3.47 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
<project>
<!-- model version is always 4.0.0 for Maven 2.x POMs -->
<modelVersion>4.0.0</modelVersion>
<!-- project coordinates.. -->
<groupId>com.stupica.base</groupId>
<artifactId>servletCore</artifactId>
<version>2.1.2</version>
<packaging>jar</packaging>
<name>servletCore</name>
<organization>
<name>developer.stupica.com</name>
<url>http://www.stupica.com</url>
</organization>
<url>http://developer.stupica.com/maven</url>
<properties>
<java-version>1.8</java-version>
<maven.compiler.source>${java-version}</maven.compiler.source>
<maven.compiler.target>${java-version}</maven.compiler.target>
</properties>
<!-- library dependencies -->
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.eclipsesource.minimal-json</groupId>
<artifactId>minimal-json</artifactId>
<version>[0.9.5,1)</version>
</dependency>
<dependency>
<groupId>com.stupica.base</groupId>
<artifactId>settingCore</artifactId>
<version>[1,2)</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>[4.13,4.14)</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<archive>
<manifestEntries>
<Implementation-Version>${project.version}</Implementation-Version>
<Specification-Version>${project.version}</Specification-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>[3.3,3.4)</version>
</extension>
</extensions>
</build>
<distributionManagement>
<!--
<repository>
<id>bDevRelease</id>
<url>ftp://developer.stupica.com/maven2</url>
</repository>
-->
<repository>
<id>bDevRelease2</id>
<url>ftp://developer.dev404.net/maven2</url>
</repository>
</distributionManagement>
<developers>
<developer>
<id>bostjanst</id>
<name>Bostjan Stupica</name>
<email>[email protected]</email>
<url>http://www.stupica.com</url>
<organization>Developer404</organization>
<organizationUrl>http://www.stupica.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
<role>admin</role>
</roles>
<timezone>Europe/Ljubljana</timezone>
<properties>
<picUrl>http://bostjan.dev404.net/about_me/myimg01.jpg</picUrl>
</properties>
</developer>
</developers>
</project>