Skip to content

Commit db3d849

Browse files
committed
[maven-release-plugin] prepare for next development iteration
1 parent aa66d97 commit db3d849

File tree

9 files changed

+1359
-1359
lines changed

9 files changed

+1359
-1359
lines changed

javaparser-core-generators/pom.xml

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<parent>
4-
<artifactId>javaparser-parent</artifactId>
5-
<groupId>com.github.javaparser</groupId>
6-
<version>3.24.5-SNAPSHOT</version>
7-
</parent>
8-
<modelVersion>4.0.0</modelVersion>
9-
10-
<artifactId>javaparser-core-generators</artifactId>
11-
<description>A code generator framework, and the generators for javaparser-core</description>
12-
13-
<dependencies>
14-
<dependency>
15-
<groupId>com.github.javaparser</groupId>
16-
<artifactId>javaparser-core</artifactId>
17-
<version>${project.version}</version>
18-
</dependency>
19-
<dependency>
20-
<groupId>org.junit.jupiter</groupId>
21-
<artifactId>junit-jupiter-engine</artifactId>
22-
<scope>test</scope>
23-
</dependency>
24-
</dependencies>
25-
26-
<profiles>
27-
<profile>
28-
<id>run-generators</id>
29-
<build>
30-
<plugins>
31-
<plugin>
32-
<groupId>org.codehaus.mojo</groupId>
33-
<artifactId>exec-maven-plugin</artifactId>
34-
<executions>
35-
<execution>
36-
<id>generate-javaparser-core</id>
37-
<phase>test</phase>
38-
<goals>
39-
<goal>java</goal>
40-
</goals>
41-
</execution>
42-
</executions>
43-
<configuration>
44-
<classpathScope>test</classpathScope>
45-
<mainClass>com.github.javaparser.generator.core.CoreGenerator</mainClass>
46-
<arguments>
47-
<argument>${project.basedir}</argument>
48-
</arguments>
49-
</configuration>
50-
</plugin>
51-
</plugins>
52-
</build>
53-
</profile>
54-
</profiles>
55-
</project>
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<parent>
4+
<artifactId>javaparser-parent</artifactId>
5+
<groupId>com.github.javaparser</groupId>
6+
<version>3.24.6-SNAPSHOT</version>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
10+
<artifactId>javaparser-core-generators</artifactId>
11+
<description>A code generator framework, and the generators for javaparser-core</description>
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>com.github.javaparser</groupId>
16+
<artifactId>javaparser-core</artifactId>
17+
<version>${project.version}</version>
18+
</dependency>
19+
<dependency>
20+
<groupId>org.junit.jupiter</groupId>
21+
<artifactId>junit-jupiter-engine</artifactId>
22+
<scope>test</scope>
23+
</dependency>
24+
</dependencies>
25+
26+
<profiles>
27+
<profile>
28+
<id>run-generators</id>
29+
<build>
30+
<plugins>
31+
<plugin>
32+
<groupId>org.codehaus.mojo</groupId>
33+
<artifactId>exec-maven-plugin</artifactId>
34+
<executions>
35+
<execution>
36+
<id>generate-javaparser-core</id>
37+
<phase>test</phase>
38+
<goals>
39+
<goal>java</goal>
40+
</goals>
41+
</execution>
42+
</executions>
43+
<configuration>
44+
<classpathScope>test</classpathScope>
45+
<mainClass>com.github.javaparser.generator.core.CoreGenerator</mainClass>
46+
<arguments>
47+
<argument>${project.basedir}</argument>
48+
</arguments>
49+
</configuration>
50+
</plugin>
51+
</plugins>
52+
</build>
53+
</profile>
54+
</profiles>
55+
</project>
Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,63 @@
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<parent>
4-
<artifactId>javaparser-parent</artifactId>
5-
<groupId>com.github.javaparser</groupId>
6-
<version>3.24.5-SNAPSHOT</version>
7-
</parent>
8-
<modelVersion>4.0.0</modelVersion>
9-
10-
<artifactId>javaparser-core-metamodel-generator</artifactId>
11-
<description>The tool that generates the code in the javaparser-metamodel module</description>
12-
13-
<dependencies>
14-
<dependency>
15-
<groupId>com.github.javaparser</groupId>
16-
<artifactId>javaparser-core</artifactId>
17-
<version>${project.version}</version>
18-
</dependency>
19-
</dependencies>
20-
21-
<build>
22-
<plugins>
23-
<plugin>
24-
<groupId>org.apache.maven.plugins</groupId>
25-
<artifactId>maven-deploy-plugin</artifactId>
26-
<configuration>
27-
<!-- no need to release this module -->
28-
<skip>true</skip>
29-
</configuration>
30-
</plugin>
31-
</plugins>
32-
</build>
33-
34-
<profiles>
35-
<profile>
36-
<id>run-generators</id>
37-
<build>
38-
<plugins>
39-
<plugin>
40-
<groupId>org.codehaus.mojo</groupId>
41-
<artifactId>exec-maven-plugin</artifactId>
42-
<executions>
43-
<execution>
44-
<id>generate-javaparser-metamodel</id>
45-
<phase>test</phase>
46-
<goals>
47-
<goal>java</goal>
48-
</goals>
49-
</execution>
50-
</executions>
51-
<configuration>
52-
<classpathScope>test</classpathScope>
53-
<mainClass>com.github.javaparser.generator.metamodel.MetaModelGenerator</mainClass>
54-
<arguments>
55-
<argument>${project.basedir}</argument>
56-
</arguments>
57-
</configuration>
58-
</plugin>
59-
</plugins>
60-
</build>
61-
</profile>
62-
</profiles>
63-
</project>
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<parent>
4+
<artifactId>javaparser-parent</artifactId>
5+
<groupId>com.github.javaparser</groupId>
6+
<version>3.24.6-SNAPSHOT</version>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
10+
<artifactId>javaparser-core-metamodel-generator</artifactId>
11+
<description>The tool that generates the code in the javaparser-metamodel module</description>
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>com.github.javaparser</groupId>
16+
<artifactId>javaparser-core</artifactId>
17+
<version>${project.version}</version>
18+
</dependency>
19+
</dependencies>
20+
21+
<build>
22+
<plugins>
23+
<plugin>
24+
<groupId>org.apache.maven.plugins</groupId>
25+
<artifactId>maven-deploy-plugin</artifactId>
26+
<configuration>
27+
<!-- no need to release this module -->
28+
<skip>true</skip>
29+
</configuration>
30+
</plugin>
31+
</plugins>
32+
</build>
33+
34+
<profiles>
35+
<profile>
36+
<id>run-generators</id>
37+
<build>
38+
<plugins>
39+
<plugin>
40+
<groupId>org.codehaus.mojo</groupId>
41+
<artifactId>exec-maven-plugin</artifactId>
42+
<executions>
43+
<execution>
44+
<id>generate-javaparser-metamodel</id>
45+
<phase>test</phase>
46+
<goals>
47+
<goal>java</goal>
48+
</goals>
49+
</execution>
50+
</executions>
51+
<configuration>
52+
<classpathScope>test</classpathScope>
53+
<mainClass>com.github.javaparser.generator.metamodel.MetaModelGenerator</mainClass>
54+
<arguments>
55+
<argument>${project.basedir}</argument>
56+
</arguments>
57+
</configuration>
58+
</plugin>
59+
</plugins>
60+
</build>
61+
</profile>
62+
</profiles>
63+
</project>

javaparser-core-serialization/pom.xml

Lines changed: 71 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,71 @@
1-
<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">
2-
<parent>
3-
<artifactId>javaparser-parent</artifactId>
4-
<groupId>com.github.javaparser</groupId>
5-
<version>3.24.5-SNAPSHOT</version>
6-
</parent>
7-
<modelVersion>4.0.0</modelVersion>
8-
9-
<artifactId>javaparser-core-serialization</artifactId>
10-
<description>Serializers for the JavaParser AST.</description>
11-
12-
<licenses>
13-
<license>
14-
<name>GNU Lesser General Public License</name>
15-
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
16-
<distribution>repo</distribution>
17-
</license>
18-
<license>
19-
<name>Apache License, Version 2.0</name>
20-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
21-
<distribution>repo</distribution>
22-
<comments>A business-friendly OSS license</comments>
23-
</license>
24-
</licenses>
25-
26-
<properties>
27-
<java.version>1.8</java.version>
28-
<build.timestamp>${maven.build.timestamp}</build.timestamp>
29-
</properties>
30-
31-
<build>
32-
<plugins>
33-
<plugin>
34-
<groupId>org.apache.maven.plugins</groupId>
35-
<artifactId>maven-jar-plugin</artifactId>
36-
<configuration>
37-
<archive>
38-
<manifestEntries>
39-
<Automatic-Module-Name>com.github.javaparser.core.serialization</Automatic-Module-Name>
40-
</manifestEntries>
41-
</archive>
42-
</configuration>
43-
</plugin>
44-
45-
</plugins>
46-
</build>
47-
48-
<dependencies>
49-
<dependency>
50-
<groupId>org.junit.jupiter</groupId>
51-
<artifactId>junit-jupiter-engine</artifactId>
52-
</dependency>
53-
<dependency>
54-
<groupId>com.github.javaparser</groupId>
55-
<artifactId>javaparser-core</artifactId>
56-
<version>${project.version}</version>
57-
</dependency>
58-
<dependency>
59-
<groupId>javax.json</groupId>
60-
<artifactId>javax.json-api</artifactId>
61-
<version>1.1.4</version>
62-
</dependency>
63-
<dependency>
64-
<groupId>org.glassfish</groupId>
65-
<artifactId>javax.json</artifactId>
66-
<version>1.1.4</version>
67-
<scope>test</scope>
68-
</dependency>
69-
</dependencies>
70-
71-
</project>
1+
<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">
2+
<parent>
3+
<artifactId>javaparser-parent</artifactId>
4+
<groupId>com.github.javaparser</groupId>
5+
<version>3.24.6-SNAPSHOT</version>
6+
</parent>
7+
<modelVersion>4.0.0</modelVersion>
8+
9+
<artifactId>javaparser-core-serialization</artifactId>
10+
<description>Serializers for the JavaParser AST.</description>
11+
12+
<licenses>
13+
<license>
14+
<name>GNU Lesser General Public License</name>
15+
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
16+
<distribution>repo</distribution>
17+
</license>
18+
<license>
19+
<name>Apache License, Version 2.0</name>
20+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
21+
<distribution>repo</distribution>
22+
<comments>A business-friendly OSS license</comments>
23+
</license>
24+
</licenses>
25+
26+
<properties>
27+
<java.version>1.8</java.version>
28+
<build.timestamp>${maven.build.timestamp}</build.timestamp>
29+
</properties>
30+
31+
<build>
32+
<plugins>
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-jar-plugin</artifactId>
36+
<configuration>
37+
<archive>
38+
<manifestEntries>
39+
<Automatic-Module-Name>com.github.javaparser.core.serialization</Automatic-Module-Name>
40+
</manifestEntries>
41+
</archive>
42+
</configuration>
43+
</plugin>
44+
45+
</plugins>
46+
</build>
47+
48+
<dependencies>
49+
<dependency>
50+
<groupId>org.junit.jupiter</groupId>
51+
<artifactId>junit-jupiter-engine</artifactId>
52+
</dependency>
53+
<dependency>
54+
<groupId>com.github.javaparser</groupId>
55+
<artifactId>javaparser-core</artifactId>
56+
<version>${project.version}</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>javax.json</groupId>
60+
<artifactId>javax.json-api</artifactId>
61+
<version>1.1.4</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>org.glassfish</groupId>
65+
<artifactId>javax.json</artifactId>
66+
<version>1.1.4</version>
67+
<scope>test</scope>
68+
</dependency>
69+
</dependencies>
70+
71+
</project>

0 commit comments

Comments
 (0)