|
66 | 66 | </developer> |
67 | 67 | </developers> |
68 | 68 |
|
69 | | - <profiles> |
70 | | - <profile> |
71 | | - <id>regnosys</id> |
72 | | - <properties> |
73 | | - <rosetta.bundle.version>0.0.0.main-SNAPSHOT</rosetta.bundle.version> |
74 | | - </properties> |
75 | | - </profile> |
76 | | - <profile> |
77 | | - <id>gpg</id> |
78 | | - <build> |
79 | | - <plugins> |
80 | | - <plugin> |
81 | | - <groupId>org.apache.maven.plugins</groupId> |
82 | | - <artifactId>maven-deploy-plugin</artifactId> |
83 | | - <version>${maven-deploy-plugin.version}</version> |
84 | | - </plugin> |
85 | | - <plugin> |
86 | | - <groupId>org.apache.maven.plugins</groupId> |
87 | | - <artifactId>maven-jar-plugin</artifactId> |
88 | | - <version>${maven-jar-plugin.version}</version> |
89 | | - <configuration> |
90 | | - <archive> |
91 | | - <manifest> |
92 | | - <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
93 | | - <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
94 | | - </manifest> |
95 | | - </archive> |
96 | | - </configuration> |
97 | | - </plugin> |
98 | | - <plugin> |
99 | | - <groupId>org.apache.maven.plugins</groupId> |
100 | | - <artifactId>maven-gpg-plugin</artifactId> |
101 | | - <version>${maven-gpg-plugin.version}</version> |
102 | | - <executions> |
103 | | - <execution> |
104 | | - <id>sign-artifacts</id> |
105 | | - <phase>verify</phase> |
106 | | - <goals> |
107 | | - <goal>sign</goal> |
108 | | - </goals> |
109 | | - <configuration> |
110 | | - <keyname>${gpg.keyname}</keyname> |
111 | | - <passphraseServerId>${gpg.keyname}</passphraseServerId> |
112 | | - </configuration> |
113 | | - </execution> |
114 | | - </executions> |
115 | | - </plugin> |
116 | | - <plugin> |
117 | | - <groupId>org.sonatype.plugins</groupId> |
118 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
119 | | - <extensions>true</extensions> |
120 | | - <configuration> |
121 | | - <nexusUrl>https://${repoServerHost}</nexusUrl> |
122 | | - <serverId>ossrh</serverId> |
123 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
124 | | - <stagingProgressTimeoutMinutes>${stagingTimeoutInMinutes}</stagingProgressTimeoutMinutes> |
125 | | - </configuration> |
126 | | - </plugin> |
127 | | - <plugin> |
128 | | - <groupId>org.apache.maven.plugins</groupId> |
129 | | - <artifactId>maven-javadoc-plugin</artifactId> |
130 | | - <version>${maven-javadoc-plugin.version}</version> |
131 | | - <configuration> |
132 | | - <failOnError>false</failOnError> |
133 | | - </configuration> |
134 | | - <executions> |
135 | | - <execution> |
136 | | - <id>attach-javadocs</id> |
137 | | - <phase>package</phase> |
138 | | - <goals> |
139 | | - <goal>jar</goal> |
140 | | - </goals> |
141 | | - </execution> |
142 | | - </executions> |
143 | | - </plugin> |
144 | | - </plugins> |
145 | | - </build> |
146 | | - </profile> |
147 | | - </profiles> |
148 | 69 |
|
149 | 70 | <properties> |
150 | 71 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
161 | 82 | <repoServerHost>s01.oss.sonatype.org</repoServerHost> |
162 | 83 | <stagingTimeoutInMinutes>20</stagingTimeoutInMinutes> |
163 | 84 |
|
164 | | - <rosetta.bundle.version>11.73.0</rosetta.bundle.version> |
165 | 85 | <rosetta.dsl.version>9.61.0</rosetta.dsl.version> |
166 | 86 |
|
167 | 87 | <xtext.version>2.38.0</xtext.version> |
|
194 | 114 | <cdm.python.output.path>target/python-cdm</cdm.python.output.path> |
195 | 115 | <unittest.rosetta.source.path>test/python_unit_tests/rosetta</unittest.rosetta.source.path> |
196 | 116 | <unittest.python.output.path>target/python-tests/unit_tests</unittest.python.output.path> |
197 | | - <serialization.test.rune.roundtrip.source.path>test/serialization_tests/rune-common/serialization/src/test/resources/rune-serializer-round-trip-test</serialization.test.rune.roundtrip.source.path> |
198 | | - <serialization.test.rune.shouldfail.source.path>test/serialization_tests/rune-common/serialization/src/test/resources/rune-serializer-error-handling-test</serialization.test.rune.shouldfail.source.path> |
199 | | - <serialization.test.python.output.path>target/python-tests/serialization_unit_tests</serialization.test.python.output.path> |
| 117 | + <serialization.test.rune.roundtrip.source.path> |
| 118 | + test/serialization_tests/rune-common/serialization/src/test/resources/rune-serializer-round-trip-test |
| 119 | + </serialization.test.rune.roundtrip.source.path> |
| 120 | + <serialization.test.rune.shouldfail.source.path> |
| 121 | + test/serialization_tests/rune-common/serialization/src/test/resources/rune-serializer-error-handling-test |
| 122 | + </serialization.test.rune.shouldfail.source.path> |
| 123 | + <serialization.test.python.output.path>target/python-tests/serialization_unit_tests |
| 124 | + </serialization.test.python.output.path> |
200 | 125 | </properties> |
201 | 126 |
|
202 | 127 | <dependencyManagement> |
|
211 | 136 | <artifactId>commons-text</artifactId> |
212 | 137 | <version>${apache.commons.text.version}</version> |
213 | 138 | </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>commons-io</groupId> |
| 141 | + <artifactId>commons-io</artifactId> |
| 142 | + <version>${commons-io.version}</version> |
| 143 | + </dependency> |
214 | 144 | <!-- xtext START --> |
215 | 145 | <dependency> |
216 | 146 | <groupId>com.google.inject</groupId> |
|
261 | 191 | </exclusion> |
262 | 192 | </exclusions> |
263 | 193 | </dependency> |
264 | | - <dependency> |
265 | | - <groupId>org.eclipse.xtext</groupId> |
266 | | - <artifactId>org.eclipse.xtext.ecore</artifactId> |
267 | | - <version>${xtext.version}</version> |
268 | | - </dependency> |
269 | 194 | <!-- xtext END --> |
270 | 195 |
|
271 | 196 | <dependency> |
|
305 | 230 | <artifactId>com.regnosys.rosetta.lib</artifactId> |
306 | 231 | <version>${rosetta.dsl.version}</version> |
307 | 232 | </dependency> |
308 | | - <dependency> |
309 | | - <groupId>com.regnosys</groupId> |
310 | | - <artifactId>rosetta-common</artifactId> |
311 | | - <version>${rosetta.bundle.version}</version> |
312 | | - </dependency> |
313 | 233 | <dependency> |
314 | 234 | <groupId>com.google.guava</groupId> |
315 | 235 | <artifactId>guava</artifactId> |
|
333 | 253 | <artifactId>commons-io</artifactId> |
334 | 254 | <version>${commons-io.version}</version> |
335 | 255 | </dependency> |
336 | | - <dependency> |
337 | | - <groupId>commons-logging</groupId> |
338 | | - <artifactId>commons-logging</artifactId> |
339 | | - <version>1.3.4</version> |
340 | | - </dependency> |
341 | 256 | </dependencies> |
342 | 257 | </dependencyManagement> |
343 | 258 |
|
|
370 | 285 | <artifactId>com.regnosys.rosetta</artifactId> |
371 | 286 | </dependency> |
372 | 287 | <dependency> |
373 | | - <groupId>com.regnosys</groupId> |
374 | | - <artifactId>rosetta-common</artifactId> |
| 288 | + <groupId>com.regnosys.rosetta</groupId> |
| 289 | + <artifactId>com.regnosys.rosetta.tests</artifactId> |
| 290 | + <scope>test</scope> |
375 | 291 | </dependency> |
376 | 292 | <dependency> |
377 | | - <groupId>com.regnosys.rosetta.code-generators</groupId> |
378 | | - <artifactId>test-helper</artifactId> |
379 | | - <version>${rosetta.bundle.version}</version> |
380 | | - <scope>test</scope> |
| 293 | + <groupId>commons-io</groupId> |
| 294 | + <artifactId>commons-io</artifactId> |
381 | 295 | </dependency> |
382 | 296 | <dependency> |
383 | 297 | <groupId>org.junit.jupiter</groupId> |
|
389 | 303 | <artifactId>jgrapht-core</artifactId> |
390 | 304 | <version>1.5.2</version> |
391 | 305 | </dependency> |
392 | | - |
393 | | - |
394 | 306 | <!-- extra dependencies --> |
395 | 307 | <dependency> |
396 | 308 | <groupId>org.eclipse.emf</groupId> |
|
0 commit comments