|
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> |
4 | | - |
5 | | - <artifactId>fj-lib</artifactId> |
6 | | - |
7 | | - <parent> |
8 | | - <groupId>org.fugerit.java</groupId> |
9 | | - <artifactId>fj-bom</artifactId> |
10 | | - <version>2.0.3</version> |
11 | | - <relativePath></relativePath> |
12 | | - </parent> |
13 | | - |
14 | | - <version>8.6.10-SNAPSHOT</version> |
15 | | - <packaging>pom</packaging> |
16 | | - |
17 | | - <name>fj-lib</name> |
18 | | - <description>Fugerit Java Library for JDK 1.8 and up</description> |
19 | | - <url>https://www.fugerit.org/perm/jupiter/</url> |
20 | | - |
21 | | - <properties> |
22 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | | - <java-version-compliance>8</java-version-compliance> |
24 | | - <maven.compiler.source>${java-version-compliance}</maven.compiler.source> |
25 | | - <maven.compiler.target>${java-version-compliance}</maven.compiler.target> |
26 | | - <maven.compiler.release>${java-version-compliance}</maven.compiler.release> |
27 | | - <javax-rs-api-version>2.1.1</javax-rs-api-version> |
28 | | - <fj-version>${project.version}</fj-version> |
29 | | - <awaitility-version>4.2.0</awaitility-version> |
30 | | - </properties> |
31 | | - |
32 | | - <licenses> |
33 | | - <license> |
34 | | - <name>Apache License, Version 2.0</name> |
35 | | - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
36 | | - <distribution>repo</distribution> |
37 | | - </license> |
38 | | - </licenses> |
39 | | - |
40 | | - <organization> |
41 | | - <url>https://www.fugerit.org</url> |
42 | | - <name>Fugerit</name> |
43 | | - </organization> |
44 | | - |
45 | | - <developers> |
46 | | - <developer> |
47 | | - <name>Matteo Franci a.k.a. Fugerit</name> |
48 | | - |
49 | | - <url>https://www.fugerit.org</url> |
50 | | - <timezone>+1</timezone> |
51 | | - <organization>Fugerit</organization> |
52 | | - <organizationUrl>https://www.fugerit.org</organizationUrl> |
53 | | - <roles> |
54 | | - <role>IT Senior Consultant</role> |
55 | | - <role>Senior Software Architect</role> |
56 | | - </roles> |
57 | | - </developer> |
58 | | - <developer> |
59 | | - <name>Daneel</name> |
60 | | - |
61 | | - <organization>Fugerit</organization> |
62 | | - <organizationUrl>https://www.fugerit.org</organizationUrl> |
63 | | - </developer> |
64 | | - </developers> |
65 | | - |
66 | | - <scm> |
67 | | - <connection>scm:git:git://github.com/fugerit-org/fj-lib.git</connection> |
68 | | - <developerConnection>scm:git:ssh://github.com/fugerit-org/fj-lib.git</developerConnection> |
69 | | - <url>https://github.com/fugerit-org/fj-lib.git</url> |
70 | | - <tag>HEAD</tag> |
71 | | - </scm> |
72 | | - |
73 | | - <issueManagement> |
74 | | - <system>GitHub</system> |
75 | | - <url>https://github.com/fugerit-org/fj-lib/issues</url> |
76 | | - </issueManagement> |
77 | | - |
78 | | - <distributionManagement> |
79 | | - <snapshotRepository> |
80 | | - <id>ossrh</id> |
81 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
82 | | - </snapshotRepository> |
83 | | - <repository> |
84 | | - <id>ossrh</id> |
85 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
86 | | - </repository> |
87 | | - </distributionManagement> |
88 | | - |
89 | | - <modules> |
90 | | - <module>fj-core</module> |
91 | | - <module>fj-core-jvfs</module> |
92 | | - <module>fj-tool</module> |
93 | | - </modules> |
94 | | - |
95 | | - <dependencyManagement> |
96 | | - |
97 | | - <dependencies> |
98 | | - |
99 | | - <dependency> |
100 | | - <groupId>org.fugerit.java</groupId> |
101 | | - <artifactId>fj-core</artifactId> |
102 | | - <version>${fj-version}</version> |
103 | | - </dependency> |
104 | | - |
105 | | - <dependency> |
106 | | - <groupId>org.fugerit.java</groupId> |
107 | | - <artifactId>fj-core-jvfs</artifactId> |
108 | | - <version>${fj-version}</version> |
109 | | - </dependency> |
110 | | - |
111 | | - </dependencies> |
112 | | - |
113 | | - </dependencyManagement> |
114 | | - |
115 | | - <build> |
116 | | - |
117 | | - <pluginManagement> |
118 | | - |
119 | | - <plugins> |
120 | | - |
121 | | - <plugin> |
122 | | - <groupId>org.apache.maven.plugins</groupId> |
123 | | - <artifactId>maven-jar-plugin</artifactId> |
124 | | - <version>${mvn-jar-version}</version> |
125 | | - </plugin> |
126 | | - |
127 | | - </plugins> |
128 | | - |
129 | | - </pluginManagement> |
130 | | - |
131 | | - </build> |
132 | | - |
133 | | - <dependencies> |
134 | | - |
135 | | - <dependency> |
136 | | - <groupId>org.projectlombok</groupId> |
137 | | - <artifactId>lombok</artifactId> |
138 | | - <scope>provided</scope> |
139 | | - </dependency> |
140 | | - |
141 | | - <dependency> |
142 | | - <groupId>org.hsqldb</groupId> |
143 | | - <artifactId>hsqldb</artifactId> |
144 | | - <scope>test</scope> |
145 | | - </dependency> |
146 | | - |
147 | | - <dependency> |
148 | | - <groupId>org.awaitility</groupId> |
149 | | - <artifactId>awaitility</artifactId> |
150 | | - <scope>test</scope> |
151 | | - </dependency> |
152 | | - |
153 | | - </dependencies> |
154 | | - |
| 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 | + |
| 5 | + <artifactId>fj-lib</artifactId> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <groupId>org.fugerit.java</groupId> |
| 9 | + <artifactId>fj-bom</artifactId> |
| 10 | + <version>2.0.3</version> |
| 11 | + <relativePath/> |
| 12 | + </parent> |
| 13 | + |
| 14 | + <version>8.6.10-SNAPSHOT</version> |
| 15 | + <packaging>pom</packaging> |
| 16 | + |
| 17 | + <name>fj-lib</name> |
| 18 | + <description>Fugerit Java Library for JDK 1.8 and up</description> |
| 19 | + <url>https://www.fugerit.org/perm/jupiter/</url> |
| 20 | + |
| 21 | + <properties> |
| 22 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 23 | + <java-version-compliance>8</java-version-compliance> |
| 24 | + <maven.compiler.source>${java-version-compliance}</maven.compiler.source> |
| 25 | + <maven.compiler.target>${java-version-compliance}</maven.compiler.target> |
| 26 | + <maven.compiler.release>${java-version-compliance}</maven.compiler.release> |
| 27 | + <javax-rs-api-version>2.1.1</javax-rs-api-version> |
| 28 | + <fj-version>8.7.0</fj-version> |
| 29 | + <awaitility-version>4.2.0</awaitility-version> |
| 30 | + </properties> |
| 31 | + |
| 32 | + <licenses> |
| 33 | + <license> |
| 34 | + <name>Apache License, Version 2.0</name> |
| 35 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 36 | + <distribution>repo</distribution> |
| 37 | + </license> |
| 38 | + </licenses> |
| 39 | + |
| 40 | + <organization> |
| 41 | + <url>https://www.fugerit.org</url> |
| 42 | + <name>Fugerit</name> |
| 43 | + </organization> |
| 44 | + |
| 45 | + <developers> |
| 46 | + <developer> |
| 47 | + <name>Matteo Franci a.k.a. Fugerit</name> |
| 48 | + |
| 49 | + <url>https://www.fugerit.org</url> |
| 50 | + <timezone>+1</timezone> |
| 51 | + <organization>Fugerit</organization> |
| 52 | + <organizationUrl>https://www.fugerit.org</organizationUrl> |
| 53 | + <roles> |
| 54 | + <role>IT Senior Consultant</role> |
| 55 | + <role>Senior Software Architect</role> |
| 56 | + </roles> |
| 57 | + </developer> |
| 58 | + <developer> |
| 59 | + <name>Daneel</name> |
| 60 | + |
| 61 | + <organization>Fugerit</organization> |
| 62 | + <organizationUrl>https://www.fugerit.org</organizationUrl> |
| 63 | + </developer> |
| 64 | + </developers> |
| 65 | + |
| 66 | + <scm> |
| 67 | + <connection>scm:git:git://github.com/fugerit-org/fj-lib.git</connection> |
| 68 | + <developerConnection>scm:git:ssh://github.com/fugerit-org/fj-lib.git</developerConnection> |
| 69 | + <url>https://github.com/fugerit-org/fj-lib.git</url> |
| 70 | + <tag>HEAD</tag> |
| 71 | + </scm> |
| 72 | + |
| 73 | + <issueManagement> |
| 74 | + <system>GitHub</system> |
| 75 | + <url>https://github.com/fugerit-org/fj-lib/issues</url> |
| 76 | + </issueManagement> |
| 77 | + |
| 78 | + <distributionManagement> |
| 79 | + <snapshotRepository> |
| 80 | + <id>ossrh</id> |
| 81 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 82 | + </snapshotRepository> |
| 83 | + <repository> |
| 84 | + <id>ossrh</id> |
| 85 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 86 | + </repository> |
| 87 | + </distributionManagement> |
| 88 | + |
| 89 | + <modules> |
| 90 | + <module>fj-core</module> |
| 91 | + <module>fj-core-jvfs</module> |
| 92 | + <module>fj-tool</module> |
| 93 | + </modules> |
| 94 | + |
| 95 | + <dependencyManagement> |
| 96 | + |
| 97 | + <dependencies> |
| 98 | + |
| 99 | + <dependency> |
| 100 | + <groupId>org.fugerit.java</groupId> |
| 101 | + <artifactId>fj-core</artifactId> |
| 102 | + <version>${fj-version}</version> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <dependency> |
| 106 | + <groupId>org.fugerit.java</groupId> |
| 107 | + <artifactId>fj-core-jvfs</artifactId> |
| 108 | + <version>${fj-version}</version> |
| 109 | + </dependency> |
| 110 | + |
| 111 | + </dependencies> |
| 112 | + |
| 113 | + </dependencyManagement> |
| 114 | + |
| 115 | + <build> |
| 116 | + |
| 117 | + <pluginManagement> |
| 118 | + |
| 119 | + <plugins> |
| 120 | + |
| 121 | + <plugin> |
| 122 | + <groupId>org.apache.maven.plugins</groupId> |
| 123 | + <artifactId>maven-jar-plugin</artifactId> |
| 124 | + <version>${mvn-jar-version}</version> |
| 125 | + </plugin> |
| 126 | + |
| 127 | + </plugins> |
| 128 | + |
| 129 | + </pluginManagement> |
| 130 | + |
| 131 | + </build> |
| 132 | + |
| 133 | + <dependencies> |
| 134 | + |
| 135 | + <dependency> |
| 136 | + <groupId>org.projectlombok</groupId> |
| 137 | + <artifactId>lombok</artifactId> |
| 138 | + <scope>provided</scope> |
| 139 | + </dependency> |
| 140 | + |
| 141 | + <dependency> |
| 142 | + <groupId>org.hsqldb</groupId> |
| 143 | + <artifactId>hsqldb</artifactId> |
| 144 | + <scope>test</scope> |
| 145 | + </dependency> |
| 146 | + |
| 147 | + <dependency> |
| 148 | + <groupId>org.awaitility</groupId> |
| 149 | + <artifactId>awaitility</artifactId> |
| 150 | + <scope>test</scope> |
| 151 | + </dependency> |
| 152 | + |
| 153 | + </dependencies> |
| 154 | + |
155 | 155 | </project> |
0 commit comments