This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
executable file
·100 lines (99 loc) · 3.24 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
<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.openunison</groupId>
<artifactId>openunison-k8s-login-github</artifactId>
<packaging>war</packaging>
<version>1.0.30</version>
<name>openunison-k8s-login-oidc</name>
<url>http://openunison.io</url>
<repositories>
<repository>
<id>Tremolo Security Dependencies</id>
<url>https://nexus.tremolo.io/repository/dependencies/</url>
</repository>
<repository>
<id>Tremolo Security Releases</id>
<url>https://nexus.tremolo.io/repository/releases/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>openunison-on-undertow</artifactId>
<version>1.0.30</version>
<exclusions>
<exclusion>
<groupId>com.tremolosecurity.myvd</groupId>
<artifactId>apacheds-service</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>open-unison-webapp</artifactId>
<version>1.0.30</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>open-unison-webapp</artifactId>
<version>1.0.30</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>unison-scalejs-main</artifactId>
<version>1.0.30</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
<configuration>
<overlays>
<overlay>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>open-unison-webapp</artifactId>
</overlay>
</overlays>
<packagingExcludes>WEB-INF/lib/log4j*2.14.1.jar</packagingExcludes>
</configuration>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>3.1.4</version>
<configuration>
<from>
<image>tremolosecurity/openunison-jib-builder:latest</image>
</from>
<container>
<user>431</user>
<appRoot>/usr/local/openunison/work/webapp</appRoot>
<entrypoint>/usr/local/openunison/bin/run_openunison.sh</entrypoint>
</container>
<to>
<image>${env.OU_CONTAINER_DEST}</image>
<auth>
<username>${env.OU_REG_USER}</username>
<password>${env.OU_REG_PASSWORD}</password>
</auth>
</to>
</configuration>
</plugin>
</plugins>
</build>
</project>