forked from ContainX/marathon-ldap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
130 lines (123 loc) · 4.87 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
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>io.containx</groupId>
<artifactId>marathon-ldap</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>Marathon LDAP authentication</name>
<properties>
<project.jdk.version>1.8</project.jdk.version>
<maven.compiler.source>${project.jdk.version}</maven.compiler.source>
<maven.compiler.target>${project.jdk.version}</maven.compiler.target>
</properties>
<licenses>
<license>
<name>Apache2 License</name>
<url>https://opensource.org/licenses/apache-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Jeremy Unruh</name>
<url>http://www.containx.io</url>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:ContainX/marathon-ldap.git</connection>
<developerConnection>scm:git:git@github.com:ContainX/marathon-ldap.git</developerConnection>
<url>https://github.com/ContainX/marathon-ldap</url>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>mesosphere.marathon</groupId>
<artifactId>plugin-interface_2.11</artifactId>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.11</artifactId>
<version>2.3.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>marathon-ldap</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>de.jutzig</groupId>
<artifactId>github-release-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<id>github-upload</id>
<phase>deploy</phase>
<goals>
<goal>release</goal>
</goals>
<inherited>false</inherited>
</execution>
</executions>
<configuration>
<description>Marathon LDAP/AD Plugin</description>
<releaseName>v${project.version}</releaseName>
<tag>${project.version}</tag>
<artifact>${project.build.directory}/marathon-ldap.jar</artifact>
<!-- If your project has additional artifacts, such as ones produced by
the maven-assembly-plugin, you can define the following
(requires version 1.1.1 of the plugin or higher): -->
<!--<fileSets>-->
<!--<fileSet>-->
<!--<directory>${project.build.directory}</directory>-->
<!--<includes>-->
<!--<include>${project.artifactId}*.tar.gz</include>-->
<!--<include>${project.artifactId}*.zip</include>-->
<!--</includes>-->
<!--</fileSet>-->
<!--</fileSets>-->
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>mesosphere</id>
<name>Mesosphere Repo</name>
<url>http://downloads.mesosphere.io/maven</url>
</repository>
</repositories>
</project>