-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
147 lines (146 loc) · 4.98 KB
/
Copy pathpom.xml
File metadata and controls
147 lines (146 loc) · 4.98 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.edifice</groupId>
<artifactId>app-parent</artifactId>
<version>1.2.1</version>
</parent>
<groupId>net.atos</groupId>
<artifactId>collaborative-editor</artifactId>
<version>3.4.7</version>
<scm>
<connection>scm:git:https://github.com/OPEN-ENT-NG/collaborative-editor.git</connection>
<developerConnection>scm:git:https://github.com/OPEN-ENT-NG/collaborative-editor.git</developerConnection>
<url>https://github.com/OPEN-ENT-NG/collaborative-editor</url>
</scm>
<repositories>
<repository>
<id>ode</id>
<name>ODE Repository</name>
<url>https://maven.opendigitaleducation.com/nexus/content/groups/public</url>
</repository>
</repositories>
<properties>
<entCoreVersion>6.16.11</entCoreVersion>
<entCoreLibsVersion>6.16.4</entCoreLibsVersion>
<gatlingHighchartsVersion>2.3.1</gatlingHighchartsVersion>
<vertxCronTimerVersion>3.0.0</vertxCronTimerVersion>
<jsonSimpleVersion>1.1.1</jsonSimpleVersion>
<modMongoVersion>4.2.0</modMongoVersion>
<modJsonSchemaValidatorVersion>2.2.0</modJsonSchemaValidatorVersion>
</properties>
<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>${vertxVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.entcore</groupId>
<artifactId>common</artifactId>
<version>${entCoreLibsVersion}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>fr.wseduc</groupId>
<artifactId>vertx-cron-timer</artifactId>
<version>${vertxCronTimerVersion}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>${jsonSimpleVersion}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.entcore</groupId>
<artifactId>tests</artifactId>
<version>${entCoreVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.entcore</groupId>
<artifactId>session</artifactId>
<version>${entCoreLibsVersion}</version>
<scope>runtime</scope>
<classifier>fat</classifier>
</dependency>
<dependency>
<groupId>org.entcore</groupId>
<artifactId>workspace</artifactId>
<version>${entCoreVersion}</version>
<scope>runtime</scope>
<classifier>fat</classifier>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>mod-mongo-persistor</artifactId>
<version>${modMongoVersion}</version>
<scope>runtime</scope>
<classifier>fat</classifier>
</dependency>
<dependency>
<groupId>com.opendigitaleducation</groupId>
<artifactId>mod-json-schema-validator</artifactId>
<version>${modJsonSchemaValidatorVersion}</version>
<scope>runtime</scope>
<classifier>fat</classifier>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.2</version>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<archive>
<manifestEntries>
<Build-Time>${maven.build.timestamp}</Build-Time>
<Main-Verticle>service:mod</Main-Verticle>
<SCM-Commit-Id>${buildNumber}</SCM-Commit-Id>
<SCM-Branch>${scmBranch}</SCM-Branch>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
</manifestEntries>
</archive>
</configuration>
</execution>
<execution>
<id>create-test-jar</id>
<phase>package</phase>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
<execution>
<id>create-deployment-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>deployment</classifier>
<includes>
<include>collaborativeeditor/**</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>