-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpom.xml
More file actions
executable file
·129 lines (121 loc) · 4.35 KB
/
Copy pathpom.xml
File metadata and controls
executable file
·129 lines (121 loc) · 4.35 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
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010-2026, sikuli.org, sikulix.com, oculix-org - MIT license
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.oculix-org</groupId>
<artifactId>oculix</artifactId>
<version>4.0.0</version>
<name>OculiX</name>
<description>Visual automation - if you can see it, you can automate it</description>
<url>https://github.com/oculix-org/Oculix</url>
<packaging>pom</packaging>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/oculix-org/Oculix/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<id>julienmerconsulting</id>
<name>Julien Mer</name>
<email>julien.mer38@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:oculix-org/Oculix.git</connection>
<developerConnection>scm:git:git@github.com:oculix-org/Oculix.git</developerConnection>
<url>https://github.com/oculix-org/Oculix</url>
</scm>
<modules>
<!-- build-extensions is the Maven core extension that prints the OculiX
gecko banner on every mvn invocation. Listed FIRST so it builds
and installs before the rest of the reactor — that way the very
next mvn run already loads it via .mvn/extensions.xml. -->
<module>build-extensions</module>
<module>API</module>
<module>IDE</module>
<module>MCP</module>
<module>Reporter</module>
</modules>
<!-- Security: force transitive versions to kill known CVEs (mostly brought by Jython 2.7.4).
Refresh quarterly or whenever Scorecard / Dependency-Check flags new ones. -->
<dependencyManagement>
<dependencies>
<!-- Netty: 5 GHSAs killed at once via the BOM (transitive from jython-slim 2.7.4) -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>4.1.133.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Bouncy Castle: 4 GHSAs killed (transitive from jython-slim 2.7.4) -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.84</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>1.84</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-jdk18on</artifactId>
<version>1.84</version>
</dependency>
<!-- plexus-utils: 1 GHSA killed (transitive from maven-core in build-extensions, provided scope) -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.6.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>