forked from rmraya/XMLJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
95 lines (90 loc) · 2.74 KB
/
pom.xml
File metadata and controls
95 lines (90 loc) · 2.74 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
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.oxygenxml</groupId>
<artifactId>oxygen-patched-superpom</artifactId>
<version>28.1-SNAPSHOT</version>
</parent>
<artifactId>oxygen-patched-xmljava</artifactId>
<version>3.1.0-SNAPSHOT</version>
<properties>
<patched.groupId>com.maxprograms</patched.groupId>
<patched.artifactId>xmljava</patched.artifactId>
<patched.version>3.1.0</patched.version>
<patched.buildId>20251014_2111</patched.buildId>
</properties>
<profiles>
<profile>
<id>package-include-manifest</id>
<activation>
<file>
<missing>package-skip-manifest.xml</missing>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<!-- Use the original Manifest file from the patched artifact. -->
<manifestFile>
${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>package-skip-manifest</id>
<activation>
<file>
<exists>package-skip-manifest.xml</exists>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<!-- Maven Compiler Plugin -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>17</release>
</configuration>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
</plugin>
<plugin>
<groupId>ro.sync.compliance</groupId>
<artifactId>compliance-mvn-dependency-check-to-sbom</artifactId>
<version>1.0.0-SNAPSHOT</version>
<configuration>
<tags>jira-fdt, rocket-raccoons</tags>
</configuration>
</plugin>
</plugins>
</build>
</project>