Skip to content

Commit 039365d

Browse files
committed
Moved the code generator to a separate Maven module.
1 parent 4d21055 commit 039365d

42 files changed

Lines changed: 146 additions & 29 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

axis-ant/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@
4040
<artifactId>axis-rt-core</artifactId>
4141
<version>${project.version}</version>
4242
</dependency>
43+
<dependency>
44+
<groupId>${project.groupId}</groupId>
45+
<artifactId>axis-codegen</artifactId>
46+
<version>${project.version}</version>
47+
</dependency>
4348
<dependency>
4449
<groupId>ant</groupId>
4550
<artifactId>ant</artifactId>

axis-codegen/pom.xml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Licensed to the Apache Software Foundation (ASF) under one
4+
~ or more contributor license agreements. See the NOTICE file
5+
~ distributed with this work for additional information
6+
~ regarding copyright ownership. The ASF licenses this file
7+
~ to you under the Apache License, Version 2.0 (the
8+
~ "License"); you may not use this file except in compliance
9+
~ with the License. You may obtain a copy of the License at
10+
~
11+
~ http://www.apache.org/licenses/LICENSE-2.0
12+
~
13+
~ Unless required by applicable law or agreed to in writing,
14+
~ software distributed under the License is distributed on an
15+
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
~ KIND, either express or implied. See the License for the
17+
~ specific language governing permissions and limitations
18+
~ under the License.
19+
-->
20+
<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">
21+
<modelVersion>4.0.0</modelVersion>
22+
<parent>
23+
<groupId>org.apache.axis</groupId>
24+
<artifactId>axis-project</artifactId>
25+
<version>1.4.1-SNAPSHOT</version>
26+
<relativePath>../pom.xml</relativePath>
27+
</parent>
28+
<artifactId>axis-codegen</artifactId>
29+
<name>Code Generator</name>
30+
<url>${baseUrl}/codegen</url>
31+
<distributionManagement>
32+
<site>
33+
<id>axis</id>
34+
<url>${baseSiteUrl}/codegen</url>
35+
</site>
36+
</distributionManagement>
37+
<dependencies>
38+
<dependency>
39+
<groupId>${project.groupId}</groupId>
40+
<artifactId>axis-rt-core</artifactId>
41+
<version>${project.version}</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>junit</groupId>
45+
<artifactId>junit</artifactId>
46+
<scope>test</scope>
47+
</dependency>
48+
</dependencies>
49+
<reporting>
50+
<plugins>
51+
<plugin>
52+
<artifactId>maven-project-info-reports-plugin</artifactId>
53+
<version>2.4</version>
54+
<reportSets>
55+
<reportSet>
56+
<reports>
57+
<report>index</report>
58+
<report>dependencies</report>
59+
</reports>
60+
</reportSet>
61+
</reportSets>
62+
</plugin>
63+
</plugins>
64+
</reporting>
65+
</project>

axis-rt-core/src/main/java/org/apache/axis/wsdl/toJava/DuplicateFileException.java renamed to axis-codegen/src/main/java/org/apache/axis/wsdl/toJava/DuplicateFileException.java

File renamed without changes.

axis-rt-core/src/main/java/org/apache/axis/wsdl/toJava/Emitter.java renamed to axis-codegen/src/main/java/org/apache/axis/wsdl/toJava/Emitter.java

File renamed without changes.

axis-rt-core/src/main/java/org/apache/axis/wsdl/toJava/FactoryProperty.java renamed to axis-codegen/src/main/java/org/apache/axis/wsdl/toJava/FactoryProperty.java

File renamed without changes.

axis-rt-core/src/main/java/org/apache/axis/wsdl/toJava/GeneratedFileInfo.java renamed to axis-codegen/src/main/java/org/apache/axis/wsdl/toJava/GeneratedFileInfo.java

File renamed without changes.

axis-rt-core/src/main/java/org/apache/axis/wsdl/toJava/JavaBeanFaultWriter.java renamed to axis-codegen/src/main/java/org/apache/axis/wsdl/toJava/JavaBeanFaultWriter.java

File renamed without changes.

axis-rt-core/src/main/java/org/apache/axis/wsdl/toJava/JavaBeanHelperWriter.java renamed to axis-codegen/src/main/java/org/apache/axis/wsdl/toJava/JavaBeanHelperWriter.java

File renamed without changes.

axis-rt-core/src/main/java/org/apache/axis/wsdl/toJava/JavaBeanWriter.java renamed to axis-codegen/src/main/java/org/apache/axis/wsdl/toJava/JavaBeanWriter.java

File renamed without changes.

axis-rt-core/src/main/java/org/apache/axis/wsdl/toJava/JavaBindingWriter.java renamed to axis-codegen/src/main/java/org/apache/axis/wsdl/toJava/JavaBindingWriter.java

File renamed without changes.

0 commit comments

Comments
 (0)