|
1 | 1 | <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/maven-v4_0_0.xsd"> |
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | | - <artifactId>jsonix-schema-compiler-test-filter</artifactId> |
| 3 | + <artifactId>jsonix-schema-compiler-test-reqif</artifactId> |
4 | 4 | <packaging>jar</packaging> |
5 | 5 | <name>Jsonix Schema Compiler Test [reqif]</name> |
6 | 6 | <parent> |
|
9 | 9 | <version>2.3.8-SNAPSHOT</version> |
10 | 10 | </parent> |
11 | 11 | <dependencies> |
| 12 | + <dependency> |
| 13 | + <groupId>org.hisrc.jsonix</groupId> |
| 14 | + <artifactId>jsonix-scripts</artifactId> |
| 15 | + </dependency> |
12 | 16 | <dependency> |
13 | 17 | <groupId>org.jvnet.jaxb2_commons</groupId> |
14 | 18 | <artifactId>jaxb2-basics-runtime</artifactId> |
15 | 19 | </dependency> |
16 | 20 | <dependency> |
17 | 21 | <groupId>org.hisrc.jsonix</groupId> |
18 | | - <artifactId>jsonix-scripts</artifactId> |
| 22 | + <artifactId>jsonix-schema-compiler</artifactId> |
| 23 | + <version>${project.version}</version> |
| 24 | + <scope>test</scope> |
19 | 25 | </dependency> |
20 | 26 | <dependency> |
21 | 27 | <groupId>org.glassfish.jaxb</groupId> |
22 | 28 | <artifactId>jaxb-runtime</artifactId> |
23 | 29 | <scope>provided</scope> |
24 | 30 | </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 33 | + <artifactId>maven-jaxb2-plugin-testing</artifactId> |
| 34 | + <version>${maven-jaxb2-plugin.version}</version> |
| 35 | + <scope>test</scope> |
| 36 | + </dependency> |
25 | 37 | </dependencies> |
26 | 38 | <build> |
27 | | - <resources> |
28 | | - <resource> |
29 | | - <directory>src/main/resources</directory> |
30 | | - </resource> |
31 | | - <resource> |
32 | | - <directory>src/main/javascript</directory> |
33 | | - </resource> |
34 | | - <resource> |
35 | | - <directory>target/generated-sources/xjc</directory> |
36 | | - <includes> |
37 | | - <include>META-INF/**/*.*</include> |
38 | | - <include>**/*.js</include> |
39 | | - </includes> |
40 | | - </resource> |
41 | | - </resources> |
42 | | - <testResources> |
43 | | - <testResource> |
44 | | - <directory>src/test/resources</directory> |
45 | | - </testResource> |
46 | | - <testResource> |
47 | | - <directory>src/test/javascript</directory> |
48 | | - </testResource> |
49 | | - </testResources> |
50 | 39 | <plugins> |
51 | 40 | <plugin> |
52 | 41 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
53 | 42 | <artifactId>maven-jaxb2-plugin</artifactId> |
54 | 43 | <configuration> |
55 | 44 | <strict>false</strict> |
56 | 45 | <extension>true</extension> |
| 46 | + <schemaIncludes/> |
57 | 47 | <schemas> |
58 | 48 | <schema> |
59 | 49 | <url>http://www.omg.org/spec/ReqIF/20110401/reqif.xsd</url> |
60 | 50 | </schema> |
61 | 51 | </schemas> |
| 52 | + <catalog>src/main/resources/catalog.cat</catalog> |
62 | 53 | <args> |
63 | 54 | <arg>-XtoString</arg> |
64 | 55 | <arg>-Xequals</arg> |
|
0 commit comments