-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
109 lines (99 loc) · 3.65 KB
/
pom.xml
File metadata and controls
109 lines (99 loc) · 3.65 KB
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
<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>globalVar</artifactId>
<version>1.4.8</version>
<packaging>jar</packaging>
<name>globalVariable</name>
<description>Core library with basic Constant, variables and (util) functions.</description>
<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>
<!-- Need Java 1.8, because of library: .. -->
<maven.compiler.source>${java-version}</maven.compiler.source>
<maven.compiler.target>${java-version}</maven.compiler.target>
<sonar.projectKey>bostjans_javaCompGlobal</sonar.projectKey>
<sonar.organization>bostjans</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
<!-- library dependencies -->
<dependencies>
<dependency>
<!-- coordinates of the required library -->
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>[4.13,5)</version>
<!-- this dependency is only used for running and compiling tests -->
<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>
<manifestFile>META-INF/MANIFEST.MF</manifestFile>
<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>
<!--
<repository>
<id>githubBostjanS</id>
<name>GitHub BostjanS Maven Packages</name>
<url>https://maven.pkg.github.com/bostjans</url>
</repository>
-->
</distributionManagement>
<developers>
<developer>
<id>bostjanst</id>
<name>Bostjan Stupica</name>
<email>bostjan@stupica.com</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/Berlin</timezone>
<properties>
<picUrl>http://bostjan.dev404.net/about_me/myimg01.jpg</picUrl>
</properties>
</developer>
</developers>
</project>