|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 |
|
5 |
| - <modelVersion>4.0.0</modelVersion> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 |
| - <groupId>perftest</groupId> |
8 |
| - <artifactId>perftest</artifactId> |
9 |
| - <version>0.1.0</version> |
| 7 | + <groupId>perftest</groupId> |
| 8 | + <artifactId>perftest</artifactId> |
| 9 | + <version>0.1.0</version> |
10 | 10 |
|
11 |
| - <packaging>jar</packaging> |
12 |
| - |
13 |
| - <dependencies> |
14 |
| - <dependency> |
15 |
| - <groupId>org.everit.json</groupId> |
16 |
| - <artifactId>org.everit.json.schema</artifactId> |
17 |
| - <version>1.1.0</version> |
18 |
| - </dependency> |
19 |
| - <dependency> |
20 |
| - <groupId>org.everit.osgi.bundles</groupId> |
21 |
| - <artifactId>org.everit.osgi.bundles.org.json</artifactId> |
22 |
| - <version>1.0.0-v20140107</version> |
23 |
| - </dependency> |
24 |
| - <dependency> |
25 |
| - <groupId>com.networknt</groupId> |
26 |
| - <artifactId>json-schema-validator</artifactId> |
27 |
| - <version>0.1.0</version> |
28 |
| - </dependency> |
29 |
| - <dependency> |
30 |
| - <groupId>com.github.fge</groupId> |
31 |
| - <artifactId>json-schema-validator</artifactId> |
32 |
| - <version>2.2.6</version> |
33 |
| - </dependency> |
34 |
| - </dependencies> |
35 |
| - |
36 |
| - <profiles> |
37 |
| - <profile> |
38 |
| - <id>dist</id> |
39 |
| - <activation> |
40 |
| - <activeByDefault>false</activeByDefault> |
41 |
| - </activation> |
42 |
| - <build> |
43 |
| - <plugins> |
44 |
| - <plugin> |
45 |
| - <groupId>org.apache.maven.plugins</groupId> |
46 |
| - <artifactId>maven-assembly-plugin</artifactId> |
47 |
| - <configuration> |
48 |
| - <descriptorRefs> |
49 |
| - <descriptorRef>jar-with-dependencies</descriptorRef> |
50 |
| - </descriptorRefs> |
51 |
| - <finalName>perftest</finalName> |
52 |
| - <appendAssemblyId>false</appendAssemblyId> |
53 |
| - <archive> |
54 |
| - <manifest> |
55 |
| - <mainClass>com.networknt.schema.perftest.Runner</mainClass> |
56 |
| - </manifest> |
57 |
| - </archive> |
58 |
| - </configuration> |
59 |
| - <executions> |
60 |
| - <execution> |
61 |
| - <id>dist</id> |
62 |
| - <phase>package</phase> |
63 |
| - <goals> |
64 |
| - <goal>single</goal> |
65 |
| - </goals> |
66 |
| - </execution> |
67 |
| - </executions> |
68 |
| - </plugin> |
69 |
| - </plugins> |
70 |
| - </build> |
71 |
| - </profile> |
72 |
| - </profiles> |
| 11 | + <packaging>jar</packaging> |
| 12 | + |
| 13 | + <dependencies> |
| 14 | + <dependency> |
| 15 | + <groupId>org.everit.json</groupId> |
| 16 | + <artifactId>org.everit.json.schema</artifactId> |
| 17 | + <version>1.5.1</version> |
| 18 | + </dependency> |
| 19 | + <dependency> |
| 20 | + <groupId>com.networknt</groupId> |
| 21 | + <artifactId>json-schema-validator</artifactId> |
| 22 | + <version>0.1.9</version> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>com.github.java-json-tools</groupId> |
| 26 | + <artifactId>json-schema-validator</artifactId> |
| 27 | + <version>2.2.8</version> |
| 28 | + </dependency> |
| 29 | + </dependencies> |
| 30 | + |
| 31 | + |
| 32 | + <profiles> |
| 33 | + <profile> |
| 34 | + <id>dist</id> |
| 35 | + <activation> |
| 36 | + <activeByDefault>false</activeByDefault> |
| 37 | + </activation> |
| 38 | + <build> |
| 39 | + <plugins> |
| 40 | + <plugin> |
| 41 | + <groupId>org.apache.maven.plugins</groupId> |
| 42 | + <artifactId>maven-assembly-plugin</artifactId> |
| 43 | + <configuration> |
| 44 | + <descriptorRefs> |
| 45 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 46 | + </descriptorRefs> |
| 47 | + <finalName>perftest</finalName> |
| 48 | + <appendAssemblyId>false</appendAssemblyId> |
| 49 | + <archive> |
| 50 | + <manifest> |
| 51 | + <mainClass>com.networknt.schema.perftest.Runner</mainClass> |
| 52 | + </manifest> |
| 53 | + </archive> |
| 54 | + </configuration> |
| 55 | + <executions> |
| 56 | + <execution> |
| 57 | + <id>dist</id> |
| 58 | + <phase>package</phase> |
| 59 | + <goals> |
| 60 | + <goal>single</goal> |
| 61 | + </goals> |
| 62 | + </execution> |
| 63 | + </executions> |
| 64 | + </plugin> |
| 65 | + </plugins> |
| 66 | + </build> |
| 67 | + </profile> |
| 68 | + </profiles> |
73 | 69 |
|
74 | 70 | </project>
|
0 commit comments