mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Fixed pom file.
This commit is contained in:
82
pom.xml
82
pom.xml
@@ -1,14 +1,35 @@
|
|||||||
<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">
|
<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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>alfresco-data-model</artifactId>
|
|
||||||
<name>Alfresco Data model classes</name>
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>alfresco-parent</artifactId>
|
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<version>5.2.1-SNAPSHOT</version>
|
<artifactId>alfresco-super-pom</artifactId>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<version>6</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>alfresco-data-model</artifactId>
|
||||||
|
<name>Alfresco Data Model</name>
|
||||||
|
<description>Alfresco Data Model classes</description>
|
||||||
|
<version>6.0-SNAPSHOT</version>
|
||||||
|
|
||||||
|
<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>
|
||||||
|
<tag>HEAD</tag>
|
||||||
|
</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>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<!-- Files to exclude from SonarQube analysis -->
|
<!-- Files to exclude from SonarQube analysis -->
|
||||||
<sonar.exclusions>
|
<sonar.exclusions>
|
||||||
@@ -56,12 +77,23 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
<target>
|
<target>
|
||||||
<copy todir="${project.build.outputDirectory}">
|
<copy todir="${project.build.outputDirectory}">
|
||||||
<fileset dir="${basedir}/config" includes="alfresco/messages/**/*.properties" />
|
<fileset dir="${basedir}/src/main/resources" includes="alfresco/messages/**/*.properties" />
|
||||||
<mapper type="regexp" from="^([^_]*).properties$" to="\1_en.properties"/>
|
<mapper type="regexp" from="^([^_]*).properties$" to="\1_en.properties"/>
|
||||||
</copy>
|
</copy>
|
||||||
</target>
|
</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>2.6</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>test-jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
@@ -98,6 +130,13 @@
|
|||||||
</lifecycleMappingMetadata>
|
</lifecycleMappingMetadata>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
||||||
|
<tagNameFormat>@{project.version}</tagNameFormat>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
</build>
|
</build>
|
||||||
@@ -106,6 +145,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-core</artifactId>
|
<artifactId>alfresco-core</artifactId>
|
||||||
|
<version>6.5</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!--
|
<!--
|
||||||
| provided dependencies (are not transitive and not included in webapps)
|
| provided dependencies (are not transitive and not included in webapps)
|
||||||
@@ -114,6 +154,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.servlet</groupId>
|
<groupId>javax.servlet</groupId>
|
||||||
<artifactId>servlet-api</artifactId>
|
<artifactId>servlet-api</artifactId>
|
||||||
|
<version>2.5</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!--
|
<!--
|
||||||
@@ -122,22 +163,23 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>jaxen</groupId>
|
<groupId>jaxen</groupId>
|
||||||
<artifactId>jaxen</artifactId>
|
<artifactId>jaxen</artifactId>
|
||||||
|
<version>1.1.6</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jibx</groupId>
|
<groupId>org.jibx</groupId>
|
||||||
<artifactId>jibx-run</artifactId>
|
<artifactId>jibx-run</artifactId>
|
||||||
<version>${dependency.jibx.version}</version>
|
<version>1.2.6</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.antlr</groupId>
|
<groupId>org.antlr</groupId>
|
||||||
<artifactId>antlr</artifactId>
|
<artifactId>antlr</artifactId>
|
||||||
<version>${dependency.antlr.version}</version>
|
<version>3.5.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.chemistry.opencmis</groupId>
|
<groupId>org.apache.chemistry.opencmis</groupId>
|
||||||
<artifactId>chemistry-opencmis-client-impl</artifactId>
|
<artifactId>chemistry-opencmis-client-impl</artifactId>
|
||||||
<version>${dependency.opencmis.version}</version><!--$NO-MVN-MAN-VER$-->
|
<version>0.11.0</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
@@ -152,7 +194,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.chemistry.opencmis</groupId>
|
<groupId>org.apache.chemistry.opencmis</groupId>
|
||||||
<artifactId>chemistry-opencmis-commons-impl</artifactId>
|
<artifactId>chemistry-opencmis-commons-impl</artifactId>
|
||||||
<version>${dependency.opencmis.version}</version>
|
<version>0.11.0</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||||
@@ -174,7 +216,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.chemistry.opencmis</groupId>
|
<groupId>org.apache.chemistry.opencmis</groupId>
|
||||||
<artifactId>chemistry-opencmis-server-bindings</artifactId>
|
<artifactId>chemistry-opencmis-server-bindings</artifactId>
|
||||||
<version>${dependency.opencmis.version}</version>
|
<version>0.11.0</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>org.jvnet.staxex</groupId>
|
<groupId>org.jvnet.staxex</groupId>
|
||||||
@@ -198,6 +240,12 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco</groupId>
|
<groupId>org.alfresco</groupId>
|
||||||
<artifactId>alfresco-xmlfactory</artifactId>
|
<artifactId>alfresco-xmlfactory</artifactId>
|
||||||
|
<version>1.0.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>xerces</groupId>
|
||||||
|
<artifactId>xercesImpl</artifactId>
|
||||||
|
<version>2.10.0-alfresco-patched</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>xpp3</groupId>
|
<groupId>xpp3</groupId>
|
||||||
@@ -208,22 +256,22 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.tika</groupId>
|
<groupId>org.apache.tika</groupId>
|
||||||
<artifactId>tika-core</artifactId>
|
<artifactId>tika-core</artifactId>
|
||||||
<version>${dependency.tika.version}</version>
|
<version>1.6-20160727-alfresco-patched</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.tika</groupId>
|
<groupId>org.apache.tika</groupId>
|
||||||
<artifactId>tika-parsers</artifactId>
|
<artifactId>tika-parsers</artifactId>
|
||||||
<version>${dependency.tika.version}</version>
|
<version>1.6-20160727-alfresco-patched</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.gagravarr</groupId>
|
<groupId>org.gagravarr</groupId>
|
||||||
<artifactId>vorbis-java-core</artifactId>
|
<artifactId>vorbis-java-core</artifactId>
|
||||||
<version>${dependency.vorbisJava.version}</version>
|
<version>0.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.gagravarr</groupId>
|
<groupId>org.gagravarr</groupId>
|
||||||
<artifactId>vorbis-java-tika</artifactId>
|
<artifactId>vorbis-java-tika</artifactId>
|
||||||
<version>${dependency.vorbisJava.version}</version>
|
<version>0.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.googlecode.juniversalchardet</groupId>
|
<groupId>com.googlecode.juniversalchardet</groupId>
|
||||||
@@ -235,17 +283,19 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.12</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.antlr</groupId>
|
<groupId>org.antlr</groupId>
|
||||||
<artifactId>gunit</artifactId>
|
<artifactId>gunit</artifactId>
|
||||||
<version>${dependency.antlr.version}</version>
|
<version>3.5.2</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mockito</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
<artifactId>mockito-all</artifactId>
|
<artifactId>mockito-all</artifactId>
|
||||||
|
<version>1.10.19</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
Reference in New Issue
Block a user