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 2
/
pom.xml
103 lines (102 loc) · 3.33 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
<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-idm-oidc</artifactId>
<packaging>war</packaging>
<version>1.0.20</version>
<name>openunison-k8s-idm-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>unison-scalejs-operators</artifactId>
<version>1.0.20</version>
</dependency>
<dependency>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>openunison-on-undertow</artifactId>
<version>1.0.20</version>
</dependency>
<dependency>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>open-unison-webapp</artifactId>
<version>1.0.20</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>open-unison-webapp</artifactId>
<version>1.0.20</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.21</version>
</dependency>
<dependency>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>unison-scalejs-main</artifactId>
<version>1.0.20</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<overlays>
<overlay>
<groupId>com.tremolosecurity.unison</groupId>
<artifactId>open-unison-webapp</artifactId>
</overlay>
</overlays>
</configuration>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>2.5.1</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>