-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
165 lines (148 loc) · 6.1 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<groupId>com.icfolson.aem.library</groupId>
<artifactId>aem-library</artifactId>
<version>7.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.icfolson.cid10.todo.mobile</groupId>
<artifactId>todo-mobile-app</artifactId>
<packaging>pom</packaging>
<version>1.0.0-SNAPSHOT</version>
<name>TODO Mobile App App</name>
<modules>
<module>todo-mobile-app-core</module>
<module>todo-mobile-app-ui</module>
</modules>
<repositories>
<repository>
<id>citytech-public</id>
<url>http://nexus.citytech.ctmsp.com/content/groups/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>citytech-public</id>
<url>http://nexus.citytech.ctmsp.com/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
<properties>
<core.artifactId>todo-mobile-app-core</core.artifactId>
<!-- versions -->
<aem-library.version>7.0.1</aem-library.version>
<component.plugin.version>4.1.2</component.plugin.version>
<ionicapps.version>0.7.0</ionicapps.version>
<adobe.aem.apps.library.version>6.0.49-NPR-4558-R008</adobe.aem.apps.library.version>
<!-- defaults -->
<package.skip>true</package.skip>
<osgi.bundle.status.skip>true</osgi.bundle.status.skip>
<cq.username>admin</cq.username>
</properties>
<profiles>
<profile>
<id>local</id>
<activation>
<property>
<name>local</name>
</property>
</activation>
<properties>
<package.skip>false</package.skip>
<osgi.bundle.status.skip>false</osgi.bundle.status.skip>
<aem.host.author>localhost</aem.host.author>
<aem.host.publish>localhost</aem.host.publish>
<aem.port.author>4502</aem.port.author>
<aem.port.publish>4503</aem.port.publish>
<aem.username.author>admin</aem.username.author>
<aem.username.publish>admin</aem.username.publish>
<aem.password.author>admin</aem.password.author>
<aem.password.publish>admin</aem.password.publish>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>1.3.1</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<configuration>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>png</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.icfolson.aem.library</groupId>
<artifactId>aem-library-core</artifactId>
<version>${aem-library.version}</version>
</dependency>
<dependency>
<groupId>com.icfolson.aem.library</groupId>
<artifactId>aem-library-api</artifactId>
<version>${aem-library.version}</version>
</dependency>
<dependency>
<groupId>com.icfolson.aem.library</groupId>
<artifactId>aem-library-models</artifactId>
<version>${aem-library.version}</version>
</dependency>
<dependency>
<groupId>com.icfolson.aem.library</groupId>
<artifactId>aem-library-ui</artifactId>
<version>${aem-library.version}</version>
<type>zip</type>
</dependency>
<!-- Component Plugin -->
<dependency>
<groupId>com.citytechinc.cq.cq-component-plugin</groupId>
<artifactId>cq-component-maven-plugin</artifactId>
<version>${component.plugin.version}</version>
</dependency>
<dependency>
<groupId>com.citytechinc.cq.cq-component-plugin</groupId>
<artifactId>cq-component-annotations</artifactId>
<version>${component.plugin.version}</version>
</dependency>
<!-- Ionic AEM Apps -->
<dependency>
<groupId>com.citytechinc.aem.apps.ionic</groupId>
<artifactId>ionic-aem-apps-api</artifactId>
<version>${ionicapps.version}</version>
</dependency>
<dependency>
<groupId>com.citytechinc.aem.apps.ionic</groupId>
<artifactId>ionic-aem-apps-core</artifactId>
<version>${ionicapps.version}</version>
</dependency>
<dependency>
<groupId>com.citytechinc.aem.apps.ionic</groupId>
<artifactId>ionic-aem-apps-ui</artifactId>
<version>${ionicapps.version}</version>
<type>zip</type>
</dependency>
<!-- AEM Apps Libraries -->
<!-- TODO: Determine if this is needed -->
<dependency>
<groupId>com.adobe.cq.mobile</groupId>
<artifactId>cq-mobile-phonegap-wcm-core</artifactId>
<version>${adobe.aem.apps.library.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>