Skip to content

Commit cc226a4

Browse files
committed
Published to Maven Central Repository + fixed small bugs
1 parent a3c5ae9 commit cc226a4

File tree

2 files changed

+115
-1
lines changed

2 files changed

+115
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
out
44
gen
55
/*/target
6-
/*/venv
6+
/*/venv
7+
8+
*.asc
Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>io.github.w4t3rcs</groupId>
6+
<artifactId>spring-boot-python-executor-parent</artifactId>
7+
<version>1.0.0</version>
8+
<packaging>pom</packaging>
9+
<name>Spring Boot Python Executor Parent</name>
10+
<description>Parent module for managing all submodules of Spring Boot Python Executor.</description>
11+
<url>https://github.com/w4t3rcs/spring-boot-python-executor</url>
12+
<licenses>
13+
<license>
14+
<name>The MIT License</name>
15+
<url>https://opensource.org/licenses/MIT</url>
16+
<distribution>repo</distribution>
17+
</license>
18+
</licenses>
19+
<developers>
20+
<developer>
21+
<name>w4t3rcs</name>
22+
<email>[email protected]</email>
23+
</developer>
24+
</developers>
25+
<scm>
26+
<url>https://github.com/w4t3rcs/spring-boot-python-executor</url>
27+
<connection>scm:git:git://github.com/w4t3rcs/spring-boot-python-executor.git</connection>
28+
<developerConnection>scm:git:ssh://[email protected]:w4t3rcs/spring-boot-python-executor.git</developerConnection>
29+
</scm>
30+
<modules>
31+
<module>python-server-testcontainers</module>
32+
<module>spring-boot-python-executor-common</module>
33+
<module>spring-boot-python-executor-core</module>
34+
<module>spring-boot-python-executor-autoconfigure</module>
35+
<module>spring-boot-python-executor-starter</module>
36+
<module>spring-boot-python-executor-cache</module>
37+
<module>spring-boot-python-executor-cache-autoconfigure</module>
38+
<module>spring-boot-python-executor-cache-starter</module>
39+
<module>spring-boot-python-executor-testcontainers</module>
40+
<module>spring-boot-python-executor-dependencies</module>
41+
</modules>
42+
<properties>
43+
<java.version>17</java.version>
44+
</properties>
45+
<build>
46+
<plugins>
47+
<plugin>
48+
<groupId>org.apache.maven.plugins</groupId>
49+
<artifactId>maven-compiler-plugin</artifactId>
50+
<version>3.11.0</version>
51+
<configuration>
52+
<release>${java.version}</release>
53+
</configuration>
54+
</plugin>
55+
<plugin>
56+
<groupId>org.sonatype.central</groupId>
57+
<artifactId>central-publishing-maven-plugin</artifactId>
58+
<version>0.5.0</version>
59+
<extensions>true</extensions>
60+
<configuration>
61+
<publishingServerId>central</publishingServerId>
62+
</configuration>
63+
</plugin>
64+
<plugin>
65+
<groupId>org.apache.maven.plugins</groupId>
66+
<artifactId>maven-javadoc-plugin</artifactId>
67+
<version>3.3.0</version>
68+
<executions>
69+
<execution>
70+
<id>attach-javadocs</id>
71+
<goals>
72+
<goal>jar</goal>
73+
</goals>
74+
</execution>
75+
</executions>
76+
<configuration>
77+
<failOnError>false</failOnError>
78+
<additionalJOptions>
79+
<additionalJOption>-Xdoclint:none</additionalJOption>
80+
</additionalJOptions>
81+
</configuration>
82+
</plugin>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-source-plugin</artifactId>
86+
<version>3.2.1</version>
87+
<executions>
88+
<execution>
89+
<id>attach-sources</id>
90+
<goals>
91+
<goal>jar-no-fork</goal>
92+
</goals>
93+
</execution>
94+
</executions>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-gpg-plugin</artifactId>
99+
<version>1.6</version>
100+
<executions>
101+
<execution>
102+
<id>sign-artifacts</id>
103+
<phase>verify</phase>
104+
<goals>
105+
<goal>sign</goal>
106+
</goals>
107+
</execution>
108+
</executions>
109+
</plugin>
110+
</plugins>
111+
</build>
112+
</project>

0 commit comments

Comments
 (0)