|
2 | 2 | <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"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | | - <groupId>io.github.ardoco</groupId> |
| 5 | + <parent> |
| 6 | + <groupId>io.github.ardoco</groupId> |
| 7 | + <artifactId>parent</artifactId> |
| 8 | + <version>2.0.0-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + |
6 | 11 | <artifactId>named-architecture-entity-recognition</artifactId> |
7 | 12 | <version>1.0.0-SNAPSHOT</version> |
8 | 13 |
|
|
28 | 33 | <timezone>GMT+1</timezone> |
29 | 34 | </developer> |
30 | 35 | </developers> |
31 | | - |
32 | 36 | <scm> |
33 | 37 | <connection>scm:git:git://github.com/ArDoCo/NamedArchitectureEntityRecognition.git</connection> |
34 | 38 | <developerConnection>scm:git:ssh://github.com:ArDoCo/NamedArchitectureEntityRecognition.git</developerConnection> |
|
50 | 54 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
51 | 55 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
52 | 56 | <project.source.encoding>UTF-8</project.source.encoding> |
53 | | - <java.version>21</java.version> |
54 | | - <maven.compiler.source>${java.version}</maven.compiler.source> |
55 | | - <maven.compiler.target>${java.version}</maven.compiler.target> |
56 | | - <maven.compiler.release>${java.version}</maven.compiler.release> |
57 | | - |
58 | | - <ardoco.version>1.1.0</ardoco.version> |
59 | | - <slf4j.version>2.0.14</slf4j.version> |
60 | | - <spotless.version>2.43.0</spotless.version> |
61 | | - <junit.version>5.11.0</junit.version> |
62 | | - <jackson.version>2.17.2</jackson.version> |
63 | 57 | </properties> |
64 | 58 |
|
65 | 59 | <dependencyManagement> |
|
75 | 69 | </dependencyManagement> |
76 | 70 |
|
77 | 71 | <dependencies> |
78 | | - |
79 | 72 | <dependency> |
80 | 73 | <groupId>com.fasterxml.jackson.core</groupId> |
81 | 74 | <artifactId>jackson-databind</artifactId> |
82 | | - <version>${jackson.version}</version> |
83 | 75 | </dependency> |
84 | 76 | <dependency> |
85 | 77 | <groupId>dev.langchain4j</groupId> |
|
89 | 81 | <groupId>dev.langchain4j</groupId> |
90 | 82 | <artifactId>langchain4j-open-ai</artifactId> |
91 | 83 | </dependency> |
92 | | - |
93 | 84 | <dependency> |
94 | 85 | <groupId>io.github.ardoco</groupId> |
95 | 86 | <artifactId>metrics</artifactId> |
96 | | - <version>0.1.1</version> |
| 87 | + <version>${metrics.version}</version> |
97 | 88 | </dependency> |
98 | | - |
99 | 89 | <dependency> |
100 | 90 | <groupId>io.github.ardoco.core</groupId> |
101 | 91 | <artifactId>common</artifactId> |
102 | 92 | <version>${ardoco.version}</version> |
103 | 93 | </dependency> |
104 | | - |
105 | | - <dependency> |
106 | | - <groupId>org.apache.commons</groupId> |
107 | | - <artifactId>commons-text</artifactId> |
108 | | - <version>1.13.1</version> |
109 | | - </dependency> |
110 | | - |
111 | 94 | <dependency> |
112 | 95 | <groupId>io.github.cdimascio</groupId> |
113 | 96 | <artifactId>dotenv-java</artifactId> |
114 | 97 | <version>3.2.0</version> |
115 | 98 | </dependency> |
116 | | - |
117 | 99 | <dependency> |
118 | | - <groupId>org.junit.jupiter</groupId> |
119 | | - <artifactId>junit-jupiter</artifactId> |
120 | | - <version>${junit.version}</version> |
121 | | - <scope>test</scope> |
122 | | - </dependency> |
123 | | - |
124 | | - <dependency> |
125 | | - <groupId>org.slf4j</groupId> |
126 | | - <artifactId>slf4j-api</artifactId> |
127 | | - <version>${slf4j.version}</version> |
128 | | - </dependency> |
129 | | - |
130 | | - <dependency> |
131 | | - <groupId>org.slf4j</groupId> |
132 | | - <artifactId>slf4j-simple</artifactId> |
133 | | - <version>${slf4j.version}</version> |
134 | | - <scope>test</scope> |
| 100 | + <groupId>org.apache.commons</groupId> |
| 101 | + <artifactId>commons-text</artifactId> |
| 102 | + <version>1.13.1</version> |
135 | 103 | </dependency> |
136 | 104 | </dependencies> |
| 105 | + <repositories> |
| 106 | + <repository> |
| 107 | + <id>mavenCentral</id> |
| 108 | + <url>https://repo1.maven.org/maven2/</url> |
| 109 | + </repository> |
| 110 | + <repository> |
| 111 | + <releases> |
| 112 | + <enabled>false</enabled> |
| 113 | + </releases> |
| 114 | + <snapshots> |
| 115 | + <enabled>true</enabled> |
| 116 | + </snapshots> |
| 117 | + <id>mavenSnapshot</id> |
| 118 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
| 119 | + </repository> |
| 120 | + </repositories> |
137 | 121 |
|
138 | 122 | <build> |
139 | | - <pluginManagement> |
140 | | - <plugins> |
141 | | - <plugin> |
142 | | - <groupId>org.apache.maven.plugins</groupId> |
143 | | - <artifactId>maven-assembly-plugin</artifactId> |
144 | | - <version>3.7.1</version> |
145 | | - </plugin> |
146 | | - <plugin> |
147 | | - <groupId>org.apache.maven.plugins</groupId> |
148 | | - <artifactId>maven-compiler-plugin</artifactId> |
149 | | - <version>3.13.0</version> |
150 | | - <configuration> |
151 | | - <release>${java.version}</release> |
152 | | - <source>${java.version}</source> |
153 | | - <target>${java.version}</target> |
154 | | - <encoding>UTF-8</encoding> |
155 | | - <fork>true</fork> |
156 | | - <meminitial>128m</meminitial> |
157 | | - <maxmem>512m</maxmem> |
158 | | - </configuration> |
159 | | - </plugin> |
160 | | - <plugin> |
161 | | - <groupId>org.apache.maven.plugins</groupId> |
162 | | - <artifactId>maven-failsafe-plugin</artifactId> |
163 | | - <version>3.2.5</version> |
164 | | - <executions> |
165 | | - <execution> |
166 | | - <goals> |
167 | | - <goal>integration-test</goal> |
168 | | - <goal>verify</goal> |
169 | | - </goals> |
170 | | - <phase>integration-test</phase> |
171 | | - </execution> |
172 | | - </executions> |
173 | | - </plugin> |
174 | | - <plugin> |
175 | | - <groupId>org.apache.maven.plugins</groupId> |
176 | | - <artifactId>maven-gpg-plugin</artifactId> |
177 | | - <version>3.2.4</version> |
178 | | - </plugin> |
179 | | - <plugin> |
180 | | - <groupId>org.apache.maven.plugins</groupId> |
181 | | - <artifactId>maven-install-plugin</artifactId> |
182 | | - <version>3.1.2</version> |
183 | | - </plugin> |
184 | | - <plugin> |
185 | | - <groupId>org.apache.maven.plugins</groupId> |
186 | | - <artifactId>maven-jar-plugin</artifactId> |
187 | | - <version>3.4.2</version> |
188 | | - </plugin> |
189 | | - <plugin> |
190 | | - <groupId>org.apache.maven.plugins</groupId> |
191 | | - <artifactId>maven-surefire-plugin</artifactId> |
192 | | - <version>3.2.5</version> |
193 | | - </plugin> |
194 | | - <plugin> |
195 | | - <groupId>org.sonatype.central</groupId> |
196 | | - <artifactId>central-publishing-maven-plugin</artifactId> |
197 | | - <version>0.7.0</version> |
198 | | - <extensions>true</extensions> |
199 | | - <configuration> |
200 | | - <publishingServerId>central</publishingServerId> |
201 | | - <autoPublish>true</autoPublish> |
202 | | - <waitUntil>published</waitUntil> |
203 | | - <deploymentName>ardoco-naer</deploymentName> |
204 | | - </configuration> |
205 | | - </plugin> |
206 | | - </plugins> |
207 | | - </pluginManagement> |
208 | 123 | <plugins> |
209 | 124 | <plugin> |
210 | 125 | <groupId>com.diffplug.spotless</groupId> |
211 | 126 | <artifactId>spotless-maven-plugin</artifactId> |
212 | | - <version>${spotless.version}</version> |
213 | | - <configuration> |
214 | | - <formats> |
215 | | - <format> |
216 | | - <includes> |
217 | | - <include>*.md</include> |
218 | | - <include>.gitignore</include> |
219 | | - </includes> |
220 | | - <trimTrailingWhitespace /> |
221 | | - <endWithNewline /> |
222 | | - <indent> |
223 | | - <tabs>true</tabs> |
224 | | - <spacesPerTab>4</spacesPerTab> |
225 | | - </indent> |
226 | | - </format> |
227 | | - </formats> |
228 | | - <!-- define a language-specific format --> |
229 | | - <java> |
230 | | - <eclipse> |
231 | | - <!--suppress UnresolvedMavenProperty --> |
232 | | - <file>${maven.multiModuleProjectDirectory}/formatter.xml</file> |
233 | | - </eclipse> |
234 | | - <removeUnusedImports /> |
235 | | - <licenseHeader> |
236 | | - <!--suppress UnresolvedMavenProperty --> |
237 | | - <file>${maven.multiModuleProjectDirectory}/license-header</file> |
238 | | - </licenseHeader> |
239 | | - <importOrder> |
240 | | - <!--suppress UnresolvedMavenProperty --> |
241 | | - <file>${maven.multiModuleProjectDirectory}/spotless.importorder</file> |
242 | | - </importOrder> |
243 | | - </java> |
244 | | - <pom> |
245 | | - <sortPom> |
246 | | - <encoding>UTF-8</encoding> |
247 | | - <keepBlankLines>true</keepBlankLines> |
248 | | - <indentBlankLines>false</indentBlankLines> |
249 | | - <nrOfIndentSpace>2</nrOfIndentSpace> |
250 | | - <expandEmptyElements>false</expandEmptyElements> |
251 | | - <spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement> |
252 | | - <sortDependencies>groupId,artifactId</sortDependencies> |
253 | | - <sortDependencyExclusions>groupId,artifactId</sortDependencyExclusions> |
254 | | - <sortDependencyManagement>groupId,artifactId</sortDependencyManagement> |
255 | | - <sortPlugins>groupId,artifactId</sortPlugins> |
256 | | - <sortProperties>false</sortProperties> |
257 | | - <sortModules>true</sortModules> |
258 | | - <sortExecutions>true</sortExecutions> |
259 | | - <predefinedSortOrder>recommended_2008_06</predefinedSortOrder> |
260 | | - </sortPom> |
261 | | - </pom> |
262 | | - <ratchetFrom>origin/main</ratchetFrom> |
263 | | - </configuration> |
264 | 127 | </plugin> |
265 | 128 | <plugin> |
266 | 129 | <groupId>org.apache.maven.plugins</groupId> |
267 | 130 | <artifactId>maven-javadoc-plugin</artifactId> |
268 | | - <version>3.7.0</version> |
269 | | - <executions> |
270 | | - <execution> |
271 | | - <id>attach-javadocs</id> |
272 | | - <goals> |
273 | | - <goal>jar</goal> |
274 | | - </goals> |
275 | | - </execution> |
276 | | - </executions> |
277 | 131 | </plugin> |
278 | 132 | <plugin> |
279 | 133 | <groupId>org.apache.maven.plugins</groupId> |
280 | 134 | <artifactId>maven-source-plugin</artifactId> |
281 | | - <version>3.3.1</version> |
282 | | - <executions> |
283 | | - <execution> |
284 | | - <id>attach-sources</id> |
285 | | - <goals> |
286 | | - <goal>jar-no-fork</goal> |
287 | | - </goals> |
288 | | - </execution> |
289 | | - </executions> |
290 | 135 | </plugin> |
291 | 136 | <plugin> |
292 | 137 | <groupId>org.sonatype.central</groupId> |
|
330 | 175 | </build> |
331 | 176 | </profile> |
332 | 177 | </profiles> |
333 | | - |
334 | 178 | </project> |
0 commit comments