-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
89 lines (89 loc) · 2.48 KB
/
pom.xml
File metadata and controls
89 lines (89 loc) · 2.48 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
<project xmlns="https://maven.apache.org/POM/4.0.0"
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>SimpleWOApp</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>woapplication</packaging>
<properties>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.webobjects</groupId>
<artifactId>webobjects-bom</artifactId>
<version>5.4.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.webobjects</groupId>
<artifactId>JavaEOAccess</artifactId>
</dependency>
<dependency>
<groupId>com.webobjects</groupId>
<artifactId>JavaEOControl</artifactId>
</dependency>
<dependency>
<groupId>com.webobjects</groupId>
<artifactId>JavaFoundation</artifactId>
</dependency>
<dependency>
<groupId>com.webobjects</groupId>
<artifactId>JavaJDBCAdaptor</artifactId>
</dependency>
<dependency>
<groupId>com.webobjects</groupId>
<artifactId>JavaWebObjects</artifactId>
</dependency>
<dependency>
<groupId>com.webobjects</groupId>
<artifactId>JavaXML</artifactId>
</dependency>
</dependencies>
<build>
<sourceDirectory>Sources</sourceDirectory>
<resources>
<resource>
<targetPath>Resources</targetPath>
<filtering>false</filtering>
<directory>Components</directory>
</resource>
<resource>
<targetPath>Resources</targetPath>
<filtering>false</filtering>
<directory>Resources</directory>
</resource>
<resource>
<targetPath>WebServerResources</targetPath>
<filtering>false</filtering>
<directory>WebServerResources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>io.github.wocommunity</groupId>
<artifactId>wolifecycle-maven-plugin</artifactId>
<version>2.7</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>21</source>
<target>21</target>
<compilerArgs>
<compilerArg>--add-exports</compilerArg>
<compilerArg>java.base/sun.security.action=ALL-UNNAMED</compilerArg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>