|
| 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/maven-v4_0_0.xsd"> |
| 4 | + |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>org.sharextras</groupId> |
| 7 | + <artifactId>share-oauth-repo</artifactId> |
| 8 | + <packaging>jar</packaging> |
| 9 | + <name>Share OAuth Repository</name> |
| 10 | + <url>http://sharextras.org</url> |
| 11 | + |
| 12 | + <properties> |
| 13 | + <buildnumber>SNAPSHOT</buildnumber> |
| 14 | + <alfresco.groupId>org.alfresco</alfresco.groupId> |
| 15 | + <alfresco.version>4.2.d</alfresco.version> |
| 16 | + <!-- This controls which properties will be picked in src/test/properties for embedded run --> |
| 17 | + <env>local</env> |
| 18 | + </properties> |
| 19 | + |
| 20 | + <parent> |
| 21 | + <groupId>org.sharextras</groupId> |
| 22 | + <artifactId>share-oauth-parent</artifactId> |
| 23 | + <version>2.3-SNAPSHOT</version> |
| 24 | + </parent> |
| 25 | + |
| 26 | + <repositories> |
| 27 | + <repository> |
| 28 | + <id>alfresco-public</id> |
| 29 | + <url>https://artifacts.alfresco.com/nexus/content/groups/public</url> |
| 30 | + </repository> |
| 31 | + </repositories> |
| 32 | + |
| 33 | + <dependencies> |
| 34 | + <dependency> |
| 35 | + <groupId>${alfresco.groupId}</groupId> |
| 36 | + <artifactId>alfresco-repository</artifactId> |
| 37 | + <version>${alfresco.version}</version> |
| 38 | + <scope>provided</scope> |
| 39 | + </dependency> |
| 40 | + <!-- Test dependencies --> |
| 41 | + <dependency> |
| 42 | + <groupId>junit</groupId> |
| 43 | + <artifactId>junit</artifactId> |
| 44 | + <version>4.8.1</version> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + </dependencies> |
| 48 | + |
| 49 | + <distributionManagement> |
| 50 | + <repository> |
| 51 | + <id>alfresco-artifacts</id> |
| 52 | + <name>Alfresco Share Extras Release Repository</name> |
| 53 | + <url>https://artifacts.alfresco.com/nexus/content/repositories/share-extras</url> |
| 54 | + <layout>default</layout> |
| 55 | + </repository> |
| 56 | + <snapshotRepository> |
| 57 | + <id>alfresco-artifacts-snapshots</id> |
| 58 | + <name>Alfresco Share Extras Snapshot Repository</name> |
| 59 | + <url>https://artifacts.alfresco.com/nexus/content/repositories/share-extras-snapshots</url> |
| 60 | + </snapshotRepository> |
| 61 | + </distributionManagement> |
| 62 | + |
| 63 | +</project> |
0 commit comments