Commit a80dda219041e2137bcca11cf1ca042f0f628b80
1 parent
27a75808f1
Exists in
master
Fixed pom file.
Showing
1 changed file
with
66 additions
and
16 deletions
Show diff stats
pom.xml
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/xsd/maven-4.0.0.xsd"> |
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | - <artifactId>alfresco-data-model</artifactId> | |
4 | - <name>Alfresco Data model classes</name> | |
3 | + | |
5 | 4 | <parent> |
6 | - <artifactId>alfresco-parent</artifactId> | |
7 | 5 | <groupId>org.alfresco</groupId> |
8 | - <version>5.2.1-SNAPSHOT</version> | |
9 | - <relativePath>../../pom.xml</relativePath> | |
6 | + <artifactId>alfresco-super-pom</artifactId> | |
7 | + <version>6</version> | |
10 | 8 | </parent> |
11 | 9 | |
10 | + <artifactId>alfresco-data-model</artifactId> | |
11 | + <name>Alfresco Data Model</name> | |
12 | + <description>Alfresco Data Model classes</description> | |
13 | + <version>6.0-SNAPSHOT</version> | |
14 | + | |
15 | + <scm> | |
16 | + <connection>scm:git:https://gitlab.alfresco.com/platform/alfresco-data-model.git</connection> | |
17 | + <developerConnection>scm:git:https://gitlab.alfresco.com/platform/alfresco-data-model.git</developerConnection> | |
18 | + <url>https://gitlab.alfresco.com/platform/alfresco-data-model</url> | |
19 | + <tag>HEAD</tag> | |
20 | + </scm> | |
21 | + | |
22 | + <distributionManagement> | |
23 | + <repository> | |
24 | + <id>alfresco-internal</id> | |
25 | + <url>https://artifacts.alfresco.com/nexus/content/repositories/releases</url> | |
26 | + </repository> | |
27 | + <snapshotRepository> | |
28 | + <id>alfresco-internal-snapshots</id> | |
29 | + <url>https://artifacts.alfresco.com/nexus/content/repositories/snapshots</url> | |
30 | + </snapshotRepository> | |
31 | + </distributionManagement> | |
32 | + | |
12 | 33 | <properties> |
13 | 34 | <!-- Files to exclude from SonarQube analysis --> |
14 | 35 | <sonar.exclusions> |
... | ... | @@ -56,12 +77,23 @@ |
56 | 77 | <configuration> |
57 | 78 | <target> |
58 | 79 | <copy todir="${project.build.outputDirectory}"> |
59 | - <fileset dir="${basedir}/config" includes="alfresco/messages/**/*.properties" /> | |
80 | + <fileset dir="${basedir}/src/main/resources" includes="alfresco/messages/**/*.properties" /> | |
60 | 81 | <mapper type="regexp" from="^([^_]*).properties$" to="\1_en.properties"/> |
61 | 82 | </copy> |
62 | 83 | </target> |
63 | 84 | </configuration> |
64 | 85 | </plugin> |
86 | + <plugin> | |
87 | + <artifactId>maven-jar-plugin</artifactId> | |
88 | + <version>2.6</version> | |
89 | + <executions> | |
90 | + <execution> | |
91 | + <goals> | |
92 | + <goal>test-jar</goal> | |
93 | + </goals> | |
94 | + </execution> | |
95 | + </executions> | |
96 | + </plugin> | |
65 | 97 | </plugins> |
66 | 98 | |
67 | 99 | <pluginManagement> |
... | ... | @@ -98,6 +130,13 @@ |
98 | 130 | </lifecycleMappingMetadata> |
99 | 131 | </configuration> |
100 | 132 | </plugin> |
133 | + <plugin> | |
134 | + <artifactId>maven-release-plugin</artifactId> | |
135 | + <configuration> | |
136 | + <autoVersionSubmodules>true</autoVersionSubmodules> | |
137 | + <tagNameFormat>@{project.version}</tagNameFormat> | |
138 | + </configuration> | |
139 | + </plugin> | |
101 | 140 | </plugins> |
102 | 141 | </pluginManagement> |
103 | 142 | </build> |
... | ... | @@ -106,6 +145,7 @@ |
106 | 145 | <dependency> |
107 | 146 | <groupId>org.alfresco</groupId> |
108 | 147 | <artifactId>alfresco-core</artifactId> |
148 | + <version>6.5</version> | |
109 | 149 | </dependency> |
110 | 150 | <!-- |
111 | 151 | | provided dependencies (are not transitive and not included in webapps) |
... | ... | @@ -114,6 +154,7 @@ |
114 | 154 | <dependency> |
115 | 155 | <groupId>javax.servlet</groupId> |
116 | 156 | <artifactId>servlet-api</artifactId> |
157 | + <version>2.5</version> | |
117 | 158 | <scope>provided</scope> |
118 | 159 | </dependency> |
119 | 160 | <!-- |
... | ... | @@ -122,22 +163,23 @@ |
122 | 163 | <dependency> |
123 | 164 | <groupId>jaxen</groupId> |
124 | 165 | <artifactId>jaxen</artifactId> |
166 | + <version>1.1.6</version> | |
125 | 167 | </dependency> |
126 | 168 | <dependency> |
127 | 169 | <groupId>org.jibx</groupId> |
128 | 170 | <artifactId>jibx-run</artifactId> |
129 | - <version>${dependency.jibx.version}</version> | |
171 | + <version>1.2.6</version> | |
130 | 172 | </dependency> |
131 | 173 | |
132 | 174 | <dependency> |
133 | 175 | <groupId>org.antlr</groupId> |
134 | 176 | <artifactId>antlr</artifactId> |
135 | - <version>${dependency.antlr.version}</version> | |
177 | + <version>3.5.2</version> | |
136 | 178 | </dependency> |
137 | 179 | <dependency> |
138 | 180 | <groupId>org.apache.chemistry.opencmis</groupId> |
139 | 181 | <artifactId>chemistry-opencmis-client-impl</artifactId> |
140 | - <version>${dependency.opencmis.version}</version><!--$NO-MVN-MAN-VER$--> | |
182 | + <version>0.11.0</version> | |
141 | 183 | <exclusions> |
142 | 184 | <exclusion> |
143 | 185 | <groupId>junit</groupId> |
... | ... | @@ -152,7 +194,7 @@ |
152 | 194 | <dependency> |
153 | 195 | <groupId>org.apache.chemistry.opencmis</groupId> |
154 | 196 | <artifactId>chemistry-opencmis-commons-impl</artifactId> |
155 | - <version>${dependency.opencmis.version}</version> | |
197 | + <version>0.11.0</version> | |
156 | 198 | <exclusions> |
157 | 199 | <exclusion> |
158 | 200 | <groupId>com.sun.xml.messaging.saaj</groupId> |
... | ... | @@ -174,7 +216,7 @@ |
174 | 216 | <dependency> |
175 | 217 | <groupId>org.apache.chemistry.opencmis</groupId> |
176 | 218 | <artifactId>chemistry-opencmis-server-bindings</artifactId> |
177 | - <version>${dependency.opencmis.version}</version> | |
219 | + <version>0.11.0</version> | |
178 | 220 | <exclusions> |
179 | 221 | <exclusion> |
180 | 222 | <groupId>org.jvnet.staxex</groupId> |
... | ... | @@ -198,6 +240,12 @@ |
198 | 240 | <dependency> |
199 | 241 | <groupId>org.alfresco</groupId> |
200 | 242 | <artifactId>alfresco-xmlfactory</artifactId> |
243 | + <version>1.0.3</version> | |
244 | + </dependency> | |
245 | + <dependency> | |
246 | + <groupId>xerces</groupId> | |
247 | + <artifactId>xercesImpl</artifactId> | |
248 | + <version>2.10.0-alfresco-patched</version> | |
201 | 249 | </dependency> |
202 | 250 | <dependency> |
203 | 251 | <groupId>xpp3</groupId> |
... | ... | @@ -208,22 +256,22 @@ |
208 | 256 | <dependency> |
209 | 257 | <groupId>org.apache.tika</groupId> |
210 | 258 | <artifactId>tika-core</artifactId> |
211 | - <version>${dependency.tika.version}</version> | |
259 | + <version>1.6-20160727-alfresco-patched</version> | |
212 | 260 | </dependency> |
213 | 261 | <dependency> |
214 | 262 | <groupId>org.apache.tika</groupId> |
215 | 263 | <artifactId>tika-parsers</artifactId> |
216 | - <version>${dependency.tika.version}</version> | |
264 | + <version>1.6-20160727-alfresco-patched</version> | |
217 | 265 | </dependency> |
218 | 266 | <dependency> |
219 | 267 | <groupId>org.gagravarr</groupId> |
220 | 268 | <artifactId>vorbis-java-core</artifactId> |
221 | - <version>${dependency.vorbisJava.version}</version> | |
269 | + <version>0.4</version> | |
222 | 270 | </dependency> |
223 | 271 | <dependency> |
224 | 272 | <groupId>org.gagravarr</groupId> |
225 | 273 | <artifactId>vorbis-java-tika</artifactId> |
226 | - <version>${dependency.vorbisJava.version}</version> | |
274 | + <version>0.4</version> | |
227 | 275 | </dependency> |
228 | 276 | <dependency> |
229 | 277 | <groupId>com.googlecode.juniversalchardet</groupId> |
... | ... | @@ -235,17 +283,19 @@ |
235 | 283 | <dependency> |
236 | 284 | <groupId>junit</groupId> |
237 | 285 | <artifactId>junit</artifactId> |
286 | + <version>4.12</version> | |
238 | 287 | <scope>test</scope> |
239 | 288 | </dependency> |
240 | 289 | <dependency> |
241 | 290 | <groupId>org.antlr</groupId> |
242 | 291 | <artifactId>gunit</artifactId> |
243 | - <version>${dependency.antlr.version}</version> | |
292 | + <version>3.5.2</version> | |
244 | 293 | <scope>test</scope> |
245 | 294 | </dependency> |
246 | 295 | <dependency> |
247 | 296 | <groupId>org.mockito</groupId> |
248 | 297 | <artifactId>mockito-all</artifactId> |
298 | + <version>1.10.19</version> | |
249 | 299 | <scope>test</scope> |
250 | 300 | </dependency> |
251 | 301 | </dependencies> | ... | ... |