|
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | | - |
7 | 6 | <parent> |
8 | 7 | <groupId>io.adminshell.aas</groupId> |
9 | 8 | <artifactId>dataformat-parent</artifactId> |
10 | 9 | <version>${revision}</version> |
11 | 10 | </parent> |
12 | 11 | <artifactId>dataformat-json</artifactId> |
13 | | - |
14 | | - <build> |
15 | | - <plugins> |
16 | | - <plugin> |
17 | | - <groupId>org.apache.maven.plugins</groupId> |
18 | | - <artifactId>maven-compiler-plugin</artifactId> |
19 | | - <configuration> |
20 | | - <source>11</source> |
21 | | - <target>11</target> |
22 | | - </configuration> |
23 | | - </plugin> |
24 | | - <plugin> |
25 | | - <groupId>org.codehaus.mojo</groupId> |
26 | | - <artifactId>flatten-maven-plugin</artifactId> |
27 | | - <version>1.2.2</version> |
28 | | - <configuration> |
29 | | - <updatePomFile>true</updatePomFile> |
30 | | - </configuration> |
31 | | - <executions> |
32 | | - <execution> |
33 | | - <id>flatten</id> |
34 | | - <phase>process-resources</phase> |
35 | | - <goals> |
36 | | - <goal>flatten</goal> |
37 | | - </goals> |
38 | | - </execution> |
39 | | - <execution> |
40 | | - <id>flatten.clean</id> |
41 | | - <phase>clean</phase> |
42 | | - <goals> |
43 | | - <goal>clean</goal> |
44 | | - </goals> |
45 | | - </execution> |
46 | | - </executions> |
47 | | - </plugin> |
48 | | - </plugins> |
49 | | - </build> |
50 | | - |
51 | 12 | <dependencies> |
52 | 13 | <dependency> |
53 | 14 | <groupId>io.adminshell.aas</groupId> |
|
58 | 19 | <dependency> |
59 | 20 | <groupId>javax.validation</groupId> |
60 | 21 | <artifactId>validation-api</artifactId> |
61 | | - <version>2.0.1.Final</version> |
| 22 | + <version>${javax-validation.version}</version> |
62 | 23 | <scope>compile</scope> |
63 | 24 | </dependency> |
64 | 25 | <dependency> |
65 | 26 | <groupId>com.fasterxml.jackson.core</groupId> |
66 | 27 | <artifactId>jackson-annotations</artifactId> |
67 | | - <version>2.12.1</version> |
| 28 | + <version>${jackson.version}</version> |
68 | 29 | <scope>compile</scope> |
69 | 30 | </dependency> |
70 | | - |
71 | | - <dependency> |
72 | | - <groupId>junit</groupId> |
73 | | - <artifactId>junit</artifactId> |
74 | | - <version>4.13</version> |
75 | | - <scope>test</scope> |
76 | | - </dependency> |
77 | | - <dependency> |
78 | | - <groupId>org.skyscreamer</groupId> |
79 | | - <artifactId>jsonassert</artifactId> |
80 | | - <version>1.5.0</version> |
81 | | - <scope>test</scope> |
82 | | - </dependency> |
83 | 31 | <dependency> |
84 | 32 | <groupId>com.fasterxml.jackson.core</groupId> |
85 | 33 | <artifactId>jackson-databind</artifactId> |
86 | | - <version>2.12.1</version> |
| 34 | + <version>${jackson.version}</version> |
87 | 35 | </dependency> |
88 | | - |
89 | 36 | <dependency> |
90 | 37 | <groupId>org.slf4j</groupId> |
91 | 38 | <artifactId>slf4j-api</artifactId> |
92 | | - <version>1.7.30</version> |
| 39 | + <version>${slf4j.version}</version> |
93 | 40 | </dependency> |
94 | 41 | <dependency> |
95 | 42 | <groupId>org.slf4j</groupId> |
96 | 43 | <artifactId>slf4j-simple</artifactId> |
97 | | - <version>1.7.30</version> |
| 44 | + <version>${slf4j.version}</version> |
98 | 45 | </dependency> |
99 | | - |
100 | 46 | <dependency> |
101 | 47 | <groupId>com.networknt</groupId> |
102 | 48 | <artifactId>json-schema-validator</artifactId> |
103 | | - <version>1.0.52</version> |
104 | | - </dependency> |
105 | | - |
106 | | - <dependency> |
107 | | - <groupId>pl.pragmatists</groupId> |
108 | | - <artifactId>JUnitParams</artifactId> |
109 | | - <version>1.1.1</version> |
110 | | - <scope>test</scope> |
| 49 | + <version>${json-schema-validator.version}</version> |
111 | 50 | </dependency> |
112 | 51 | <dependency> |
113 | 52 | <groupId>io.github.classgraph</groupId> |
114 | 53 | <artifactId>classgraph</artifactId> |
115 | | - <version>4.8.106</version> |
| 54 | + <version>${classgraph.version}</version> |
116 | 55 | </dependency> |
117 | 56 | <dependency> |
118 | 57 | <groupId>org.hibernate.validator</groupId> |
119 | 58 | <artifactId>hibernate-validator</artifactId> |
120 | | - <version>7.0.1.Final</version> |
| 59 | + <version>${hibernate.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>junit</groupId> |
| 63 | + <artifactId>junit</artifactId> |
| 64 | + <version>${junit.version}</version> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>pl.pragmatists</groupId> |
| 69 | + <artifactId>JUnitParams</artifactId> |
| 70 | + <version>${junit-params.version}</version> |
| 71 | + <scope>test</scope> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.skyscreamer</groupId> |
| 75 | + <artifactId>jsonassert</artifactId> |
| 76 | + <version>${jsonassert.version}</version> |
| 77 | + <scope>test</scope> |
121 | 78 | </dependency> |
122 | 79 | </dependencies> |
123 | | - |
| 80 | + <build> |
| 81 | + <plugins> |
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.maven.plugins</groupId> |
| 84 | + <artifactId>maven-compiler-plugin</artifactId> |
| 85 | + <configuration> |
| 86 | + <source>11</source> |
| 87 | + <target>11</target> |
| 88 | + </configuration> |
| 89 | + </plugin> |
| 90 | + <plugin> |
| 91 | + <groupId>org.codehaus.mojo</groupId> |
| 92 | + <artifactId>flatten-maven-plugin</artifactId> |
| 93 | + <version>1.2.2</version> |
| 94 | + <configuration> |
| 95 | + <updatePomFile>true</updatePomFile> |
| 96 | + </configuration> |
| 97 | + <executions> |
| 98 | + <execution> |
| 99 | + <id>flatten</id> |
| 100 | + <phase>process-resources</phase> |
| 101 | + <goals> |
| 102 | + <goal>flatten</goal> |
| 103 | + </goals> |
| 104 | + </execution> |
| 105 | + <execution> |
| 106 | + <id>flatten.clean</id> |
| 107 | + <phase>clean</phase> |
| 108 | + <goals> |
| 109 | + <goal>clean</goal> |
| 110 | + </goals> |
| 111 | + </execution> |
| 112 | + </executions> |
| 113 | + </plugin> |
| 114 | + </plugins> |
| 115 | + </build> |
124 | 116 | <repositories> |
125 | 117 | <repository> |
126 | 118 | <id>eis-public-repo</id> |
127 | 119 | <name>maven-public</name> |
128 | 120 | <url>https://maven.iais.fraunhofer.de/artifactory/eis-ids-public</url> |
129 | 121 | </repository> |
130 | 122 | </repositories> |
131 | | - |
132 | | - |
133 | 123 | </project> |
0 commit comments