Skip to content

Commit ac9c730

Browse files
committed
Initial refactoring of Share OAuth into separate repo and Share modules
- Share and repo code and config separated into sub-modules - Top-level pom only builds Share module for now
1 parent f4426b0 commit ac9c730

27 files changed

+90
-67
lines changed

pom.xml

Lines changed: 8 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
21
<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">
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43

54
<modelVersion>4.0.0</modelVersion>
65
<groupId>org.sharextras</groupId>
7-
<artifactId>share-oauth</artifactId>
8-
<packaging>jar</packaging>
6+
<artifactId>share-oauth-parent</artifactId>
97
<version>2.3-SNAPSHOT</version>
10-
<name>Share OAuth</name>
11-
<url>http://sharextras.org</url>
8+
<name>Share OAuth Parent</name>
9+
<packaging>pom</packaging>
1210

1311
<properties>
14-
<buildnumber>SNAPSHOT</buildnumber>
15-
<alfresco.groupId>org.alfresco</alfresco.groupId>
16-
<alfresco.version>4.2.d</alfresco.version>
17-
<!-- This controls which properties will be picked in src/test/properties for embedded run -->
18-
<env>local</env>
1912
</properties>
2013

2114
<parent>
@@ -24,60 +17,8 @@
2417
<version>1.0.1</version>
2518
</parent>
2619

27-
<repositories>
28-
<repository>
29-
<id>alfresco-public</id>
30-
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
31-
</repository>
32-
</repositories>
20+
<modules>
21+
<module>share-oauth</module>
22+
</modules>
3323

34-
<dependencies>
35-
<dependency>
36-
<groupId>junit</groupId>
37-
<artifactId>junit</artifactId>
38-
<version>3.8.1</version>
39-
<scope>test</scope>
40-
</dependency>
41-
<dependency>
42-
<groupId>org.springframework.extensions.surf</groupId>
43-
<artifactId>spring-surf-api</artifactId>
44-
<version>1.2.0-M3</version>
45-
</dependency>
46-
<dependency>
47-
<groupId>org.springframework.extensions.surf</groupId>
48-
<artifactId>spring-webscripts-api</artifactId>
49-
<version>1.2.0-M3</version>
50-
</dependency>
51-
<dependency>
52-
<groupId>org.springframework.extensions.surf</groupId>
53-
<artifactId>spring-webscripts</artifactId>
54-
<version>1.2.0-M3</version>
55-
</dependency>
56-
<dependency>
57-
<groupId>javax.servlet</groupId>
58-
<artifactId>javax.servlet-api</artifactId>
59-
<version>3.0.1</version>
60-
<scope>provided</scope>
61-
</dependency>
62-
<dependency>
63-
<groupId>org.springframework</groupId>
64-
<artifactId>spring-context</artifactId>
65-
<version>3.1.2.RELEASE</version>
66-
</dependency>
67-
</dependencies>
68-
69-
<distributionManagement>
70-
<repository>
71-
<id>alfresco-artifacts</id>
72-
<name>Alfresco Share Extras Release Repository</name>
73-
<url>https://artifacts.alfresco.com/nexus/content/repositories/share-extras</url>
74-
<layout>default</layout>
75-
</repository>
76-
<snapshotRepository>
77-
<id>alfresco-artifacts-snapshots</id>
78-
<name>Alfresco Share Extras Snapshot Repository</name>
79-
<url>https://artifacts.alfresco.com/nexus/content/repositories/share-extras-snapshots</url>
80-
</snapshotRepository>
81-
</distributionManagement>
82-
83-
</project>
24+
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)