Skip to content

Commit a074f05

Browse files
committed
Basic POM changes to define a new fork.
(Actually, I'm only guessing at what the procedure for this is...) New project is "unquietcode.tools.jcodemodel".
1 parent b1a0335 commit a074f05

3 files changed

Lines changed: 45 additions & 28 deletions

File tree

codemodel-annotation-compiler/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242

4343
<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/maven-v4_0_0.xsd">
4444
<modelVersion>4.0.0</modelVersion>
45-
<groupId>com.sun.codemodel</groupId>
45+
<groupId>unquietcode.tools.jcodemodel</groupId>
4646
<artifactId>codemodel-annotation-compiler</artifactId>
47-
<version>2.7-SNAPSHOT</version>
47+
<version>1.0-SNAPSHOT</version>
4848
<name>Codemodel Annotation Compiler</name>
4949
<description>The annotation compiler ant task for the CodeModel java source code generation library</description>
5050
<parent>
@@ -55,9 +55,9 @@
5555
</parent>
5656
<dependencies>
5757
<dependency>
58-
<groupId>com.sun.codemodel</groupId>
58+
<groupId>unquietcode.tools.jcodemodel</groupId>
5959
<artifactId>codemodel</artifactId>
60-
<version>2.7-SNAPSHOT</version>
60+
<version>1.0-SNAPSHOT</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.sun.istack</groupId>

codemodel/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@
4242

4343
<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/maven-v4_0_0.xsd">
4444
<modelVersion>4.0.0</modelVersion>
45-
<groupId>com.sun.codemodel</groupId>
45+
<groupId>unquietcode.tools.jcodemodel</groupId>
4646
<artifactId>codemodel</artifactId>
47-
<version>2.7-SNAPSHOT</version>
47+
<version>1.0-SNAPSHOT</version>
4848
<name>Codemodel Core</name>
4949
<description>The core functionality of the CodeModel java source code generation library</description>
5050
<parent>
51-
<groupId>com.sun.codemodel</groupId>
51+
<groupId>unquietcode.tools.jcodemodel</groupId>
5252
<artifactId>codemodel-project</artifactId>
53-
<version>2.7-SNAPSHOT</version>
53+
<version>1.0-SNAPSHOT</version>
5454
<relativePath>../pom.xml</relativePath>
5555
</parent>
5656
<dependencies>

pom.xml

Lines changed: 37 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@
4242

4343
<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/maven-v4_0_0.xsd">
4444
<modelVersion>4.0.0</modelVersion>
45-
<groupId>com.sun.codemodel</groupId>
45+
<groupId>unquietcode.tools.jcodemodel</groupId>
4646
<artifactId>codemodel-project</artifactId>
4747
<name>Codemodel</name>
4848
<description>Java source code generation library</description>
4949
<url>http://codemodel.java.net/</url>
50-
<version>2.7-SNAPSHOT</version>
50+
<version>1.0-SNAPSHOT</version>
5151
<packaging>pom</packaging>
5252
<parent>
5353
<groupId>net.java</groupId>
@@ -144,10 +144,6 @@
144144
<connection>scm:svn:https://svn.java.net/svn/codemodel~svn/trunk/codemodel</connection>
145145
<url>http://java.net/projects/codemodel/sources/svn/show/trunk</url>
146146
</scm>
147-
<organization>
148-
<name>Oracle</name>
149-
<url>http://www.oracle.com/</url>
150-
</organization>
151147
<build>
152148
<plugins>
153149
<plugin>
@@ -159,20 +155,41 @@
159155
<target>1.5</target>
160156
</configuration>
161157
</plugin>
162-
<plugin>
163-
<groupId>org.apache.maven.plugins</groupId>
164-
<artifactId>maven-site-plugin</artifactId>
165-
<version>2.3</version>
166-
</plugin>
158+
<plugin>
159+
<groupId>org.apache.maven.plugins</groupId>
160+
<artifactId>maven-source-plugin</artifactId>
161+
<version>2.1.2</version>
162+
<executions>
163+
<execution>
164+
<goals>
165+
<goal>jar</goal>
166+
</goals>
167+
<phase>generate-sources</phase>
168+
</execution>
169+
</executions>
170+
</plugin>
171+
<plugin>
172+
<groupId>org.apache.maven.plugins</groupId>
173+
<artifactId>maven-javadoc-plugin</artifactId>
174+
<version>2.8.1</version>
175+
<executions>
176+
<execution>
177+
<goals>
178+
<goal>jar</goal>
179+
</goals>
180+
<phase>generate-sources</phase>
181+
</execution>
182+
</executions>
183+
</plugin>
167184
</plugins>
168185
</build>
169-
<reporting>
170-
<plugins>
171-
<plugin>
172-
<groupId>org.apache.maven.plugins</groupId>
173-
<artifactId>maven-javadoc-plugin</artifactId>
174-
<version>2.8</version>
175-
</plugin>
176-
</plugins>
177-
</reporting>
186+
<!--<reporting>-->
187+
<!--<plugins>-->
188+
<!--<plugin>-->
189+
<!--<groupId>org.apache.maven.plugins</groupId>-->
190+
<!--<artifactId>maven-javadoc-plugin</artifactId>-->
191+
<!--<version>2.8.1</version>-->
192+
<!--</plugin>-->
193+
<!--</plugins>-->
194+
<!--</reporting>-->
178195
</project>

0 commit comments

Comments
 (0)