Skip to content
Merged

no axis #5993

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -909,21 +909,6 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>f5</id>
<activation>
<property>
<name>noredist</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.apache.cloudstack</groupId>
<artifactId>cloud-plugin-network-f5</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>srx</id>
<activation>
Expand Down
8 changes: 0 additions & 8 deletions plugins/hypervisors/vmware/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,6 @@
<artifactId>resolver</artifactId>
<version>20050927</version>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis</artifactId>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Member

@yadvr yadvr Mar 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From https://axis.apache.org/axis2/java/core/docs/migration.html doesn't look like this would cause an issue. However, this is raising eyebrows - https://java-user.axis.apache.narkive.com/86NmaQ8j/axis2-accepting-self-signed-certificate-from-the-server
I'm wondering where that certificate ignoring is affecting communication, esp when smoketests have passed.

</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis-jaxrpc</artifactId>
</dependency>
<dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
Expand Down
8 changes: 0 additions & 8 deletions plugins/network-elements/f5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,11 @@
<relativePath>../../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis-jaxrpc</artifactId>
</dependency>
<dependency>
<groupId>com.cloud.com.f5</groupId>
<artifactId>icontrol</artifactId>
<version>12.1</version>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis</artifactId>
</dependency>
<dependency>
<groupId>commons-discovery</groupId>
<artifactId>commons-discovery</artifactId>
Expand Down
4 changes: 0 additions & 4 deletions plugins/network-elements/juniper-srx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,5 @@
<artifactId>icontrol</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis</artifactId>
</dependency>
</dependencies>
</project>
11 changes: 0 additions & 11 deletions plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -163,17 +163,6 @@
</dependency>
</dependencies>
<profiles>
<profile>
<id>f5</id>
<activation>
<property>
<name>noredist</name>
</property>
</activation>
<modules>
<module>network-elements/f5</module>
</modules>
</profile>
<profile>
<id>srx</id>
<activation>
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<cs.aspectjrt.version>1.9.6</cs.aspectjrt.version>
<cs.aws.sdk.version>1.11.940</cs.aws.sdk.version>
<cs.axiom.version>1.2.8</cs.axiom.version>
<cs.axis.version>1.4</cs.axis.version>
<cs.axis2.version>1.6.4</cs.axis2.version>
<cs.batik.version>1.14</cs.batik.version>
<cs.bcprov.version>1.64</cs.bcprov.version>
<cs.cglib.version>3.3.0</cs.cglib.version>
Expand Down Expand Up @@ -455,14 +455,14 @@
<version>${cs.ehcache.version}</version>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis</artifactId>
<version>${cs.axis.version}</version>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2</artifactId>
<version>${cs.axis2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis-jaxrpc</artifactId>
<version>${cs.axis.version}</version>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-jaxws</artifactId>
<version>${cs.axis2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
8 changes: 0 additions & 8 deletions vmware-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,6 @@
<version>${cs.vmware.api.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis</artifactId>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis-jaxrpc</artifactId>
</dependency>
<dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
Expand Down