Blame view
pom.xml
12.7 KB
27a75808f
|
1 2 |
<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"> <modelVersion>4.0.0</modelVersion> |
a80dda219
|
3 |
|
27a75808f
|
4 |
<parent> |
27a75808f
|
5 |
<groupId>org.alfresco</groupId> |
a80dda219
|
6 7 |
<artifactId>alfresco-super-pom</artifactId> <version>6</version> |
27a75808f
|
8 |
</parent> |
a80dda219
|
9 10 11 |
<artifactId>alfresco-data-model</artifactId> <name>Alfresco Data Model</name> <description>Alfresco Data Model classes</description> |
d39abecf8
|
12 |
<version>REPO1259-6.4-RC1</version> |
a80dda219
|
13 14 15 16 17 |
<scm> <connection>scm:git:https://gitlab.alfresco.com/platform/alfresco-data-model.git</connection> <developerConnection>scm:git:https://gitlab.alfresco.com/platform/alfresco-data-model.git</developerConnection> <url>https://gitlab.alfresco.com/platform/alfresco-data-model</url> |
cd7bf82f1
![]() |
18 |
<tag>HEAD</tag> |
a80dda219
|
19 20 21 22 23 24 25 26 27 28 29 30 |
</scm> <distributionManagement> <repository> <id>alfresco-internal</id> <url>https://artifacts.alfresco.com/nexus/content/repositories/releases</url> </repository> <snapshotRepository> <id>alfresco-internal-snapshots</id> <url>https://artifacts.alfresco.com/nexus/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> |
27a75808f
|
31 32 33 34 35 36 37 |
<properties> <!-- Files to exclude from SonarQube analysis --> <sonar.exclusions> source/java/org/alfresco/repo/search/impl/parsers/CMIS*er.java, source/java/org/alfresco/repo/search/impl/parsers/FTSParser.java, source/java/org/alfresco/repo/search/impl/parsers/FTSLexer.java </sonar.exclusions> |
a8906227b
![]() |
38 |
|
27a75808f
|
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
</properties> <build> <plugins> <plugin> <groupId>org.jibx</groupId> <artifactId>maven-jibx-plugin</artifactId> <configuration> <load>true</load> <schemaBindingDirectory>${project.build.sourceDirectory}/org/alfresco/repo/dictionary</schemaBindingDirectory> <includeSchemaBindings> <includeSchemaBinding>m2binding.xml</includeSchemaBinding> </includeSchemaBindings> </configuration> <executions> <execution> <id>bind-sources</id> <goals> <goal>bind</goal> </goals> </execution> </executions> </plugin> <!-- ACE-3329 Create _en.properties message files --> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>duplicate-english-messages</id> <phase>generate-resources</phase> <goals> <goal>run</goal> </goals> </execution> </executions> <configuration> <target> <copy todir="${project.build.outputDirectory}"> |
a80dda219
|
78 |
<fileset dir="${basedir}/src/main/resources" includes="alfresco/messages/**/*.properties" /> |
9fdad080c
![]() |
79 |
<mapper type="regexp" from="^([^_]*).properties$" to="\1_en.properties" /> |
27a75808f
|
80 81 82 83 |
</copy> </target> </configuration> </plugin> |
a80dda219
|
84 85 86 87 88 89 90 91 92 93 94 |
<plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> |
27a75808f
|
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
</plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.jibx</groupId> <artifactId> maven-jibx-plugin </artifactId> <versionRange> [1.2.5,) </versionRange> <goals> <goal>bind</goal> </goals> </pluginExecutionFilter> <action> <execute> <runOnConfiguration>true</runOnConfiguration> <runOnIncremental>true</runOnIncremental> </execute> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> |
a80dda219
|
131 132 133 134 135 136 137 |
<plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> |
27a75808f
|
138 139 140 141 142 143 144 145 |
</plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-core</artifactId> |
d39abecf8
|
146 |
<version>REPO1259-6.7-RC1</version> |
27a75808f
|
147 |
</dependency> |
a8906227b
![]() |
148 |
<!-- |
27a75808f
|
149 150 |
| provided dependencies (are not transitive and not included in webapps) | see http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope |
a8906227b
![]() |
151 |
--> |
27a75808f
|
152 153 |
<dependency> <groupId>javax.servlet</groupId> |
6842ae394
|
154 155 |
<artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> |
27a75808f
|
156 157 |
<scope>provided</scope> </dependency> |
a8906227b
![]() |
158 |
<!-- |
27a75808f
|
159 |
| compile dependencies |
a8906227b
![]() |
160 |
--> |
27a75808f
|
161 162 163 |
<dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> |
a80dda219
|
164 |
<version>1.1.6</version> |
27a75808f
|
165 166 167 168 |
</dependency> <dependency> <groupId>org.jibx</groupId> <artifactId>jibx-run</artifactId> |
a80dda219
|
169 |
<version>1.2.6</version> |
27a75808f
|
170 171 172 |
</dependency> <dependency> |
c4cade2ad
|
173 174 175 176 177 178 |
<groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> <version>1.9.13</version> </dependency> <dependency> |
27a75808f
|
179 180 |
<groupId>org.antlr</groupId> <artifactId>antlr</artifactId> |
a80dda219
|
181 |
<version>3.5.2</version> |
27a75808f
|
182 183 184 185 |
</dependency> <dependency> <groupId>org.apache.chemistry.opencmis</groupId> <artifactId>chemistry-opencmis-client-impl</artifactId> |
a80dda219
|
186 |
<version>0.11.0</version> |
27a75808f
|
187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
<exclusions> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> <exclusion> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.chemistry.opencmis</groupId> <artifactId>chemistry-opencmis-commons-impl</artifactId> |
a80dda219
|
201 |
<version>0.11.0</version> |
27a75808f
|
202 203 204 |
<exclusions> <exclusion> <groupId>com.sun.xml.messaging.saaj</groupId> |
a8906227b
![]() |
205 |
<artifactId>saaj-impl</artifactId> |
27a75808f
|
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
</exclusion> <exclusion> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> </exclusion> </exclusions> </dependency> <!-- stax-ex is exluded from chemistry and included here, to avoid making constant requests to the repo --> <!-- That's becausde the chemistry-pulled one does not specify a specific version --> <dependency> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>org.apache.chemistry.opencmis</groupId> <artifactId>chemistry-opencmis-server-bindings</artifactId> |
a80dda219
|
223 |
<version>0.11.0</version> |
27a75808f
|
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
<exclusions> <exclusion> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>woodstox-core-asl</artifactId> <version>4.2.0</version> </dependency> <!-- This is now deployed at: | http://artifacts.alfresco.com/nexus/content/repositories/thirdparty/org/acegisecurity/acegi-security/0.8.2_patched/ --> <dependency> <groupId>org.acegisecurity</groupId> <artifactId>acegi-security</artifactId> <version>0.8.2_patched</version> </dependency> <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-xmlfactory</artifactId> |
3c3ff260e
![]() |
247 |
<version>1.2.1</version> |
a80dda219
|
248 249 250 251 252 |
</dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.10.0-alfresco-patched</version> |
27a75808f
|
253 254 255 256 257 258 259 260 261 262 |
</dependency> <dependency> <groupId>xpp3</groupId> <artifactId>xpp3</artifactId> <version>1.1.3_8</version> </dependency> <!-- Tika --> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-core</artifactId> |
a80dda219
|
263 |
<version>1.6-20160727-alfresco-patched</version> |
27a75808f
|
264 265 266 267 |
</dependency> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika-parsers</artifactId> |
a80dda219
|
268 |
<version>1.6-20160727-alfresco-patched</version> |
27a75808f
|
269 270 271 272 |
</dependency> <dependency> <groupId>org.gagravarr</groupId> <artifactId>vorbis-java-core</artifactId> |
a80dda219
|
273 |
<version>0.4</version> |
27a75808f
|
274 275 276 277 |
</dependency> <dependency> <groupId>org.gagravarr</groupId> <artifactId>vorbis-java-tika</artifactId> |
a80dda219
|
278 |
<version>0.4</version> |
27a75808f
|
279 280 281 282 283 284 285 286 287 288 289 |
</dependency> <dependency> <groupId>com.googlecode.juniversalchardet</groupId> <artifactId>juniversalchardet</artifactId> <version>1.0.3</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> |
a80dda219
|
290 |
<version>4.12</version> |
27a75808f
|
291 292 293 294 295 |
<scope>test</scope> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>gunit</artifactId> |
a80dda219
|
296 |
<version>3.5.2</version> |
27a75808f
|
297 298 299 300 301 |
<scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> |
a80dda219
|
302 |
<version>1.10.19</version> |
27a75808f
|
303 304 305 |
<scope>test</scope> </dependency> </dependencies> |
56da1d10b
|
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
<profiles> <profile> <id>doclint-java8-max</id> <activation> <jdk>[1.8,)</jdk> </activation> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <!-- <additionalparam>-Xmaxwarns 10000 -Xmaxerrs 10000</additionalparam> to detect more than 100 error --> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </plugins> </build> </profile> </profiles> |
27a75808f
|
326 |
</project> |