forked from openslice/io.openslice.main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
118 lines (101 loc) · 3.98 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
113
114
115
116
117
118
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.openslice</groupId>
<artifactId>io.openslice.main</artifactId>
<version>1.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>io.openslice.main</name>
<organization>
<name>openslice.io</name>
<url>http://openslice.io</url>
</organization>
<inceptionYear>2019</inceptionYear>
<properties>
<jackson.version>2.8.11</jackson.version>
<maven-license-plugin.version>2.0.0</maven-license-plugin.version>
<license.licenseName>apache_v2</license.licenseName>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<camel.version>3.11.1</camel.version>
<spring-boot-version>2.4.0</spring-boot-version>
<spring-cloud-consul-version>3.0.2</spring-cloud-consul-version>
<swagger.version>3.0.0</swagger.version>
<java.version>11</java.version>
<keycloak.version>9.0.2</keycloak.version>
<!-- mainly for gw api -->
<oauth.version>2.4.0.RELEASE</oauth.version>
<jwt.version>1.0.10.RELEASE</jwt.version>
<netflix-zuul.version>2.1.1.RELEASE</netflix-zuul.version>
<oauth-autoconfig.version>2.2.4.RELEASE</oauth-autoconfig.version>
<!-- encoding -->
<encoding>utf-8</encoding>
<encoding.build.source>${encoding}</encoding.build.source>
<encoding.report.out>${encoding}</encoding.report.out>
<project.build.sourceEncoding>${encoding}</project.build.sourceEncoding>
<project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding>
</properties>
<modules>
<module>../io.openslice.sol005nbi.osm</module>
<module>../io.openslice.sol005nbi.osm8</module>
<module>../io.openslice.sol005nbi.osm9</module>
<module>../io.openslice.sol005nbi.osm10</module>
<module>../io.openslice.sol005nbi.etsi</module>
<module>../io.openslice.model</module>
<module>../io.openslice.centrallog.client</module>
<module>../io.openslice.portal.api</module>
<module>../io.openslice.tmf.api</module>
<module>../io.openslice.oas</module>
<module>../io.openslice.mano</module>
<module>../io.openslice.bugzilla</module>
<module>../io.openslice.centrallog.service</module>
<module>../io.openslice.osom</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>13</source>
<target>13</target>
</configuration>
</plugin>
<plugin>
<!-- run mvn license:update-file-header to manually update all headers everywhere -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${maven-license-plugin.version}</version>
<configuration>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<processStartTag>========================LICENSE_START=================================</processStartTag>
<processEndTag>=========================LICENSE_END==================================</processEndTag>
<excludes>*.json</excludes>
<roots>src/main/java,src/test/java</roots>
</configuration>
<executions>
<execution>
<id>generate-license-headers</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<licenseName>${license.licenseName}</licenseName>
</configuration>
</execution>
<execution>
<id>download-licenses</id>
<goals>
<goal>download-licenses</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>