axis-model
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.gferrariuy</groupId>
<artifactId>axis-model</artifactId>
<version>1.4.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>axis1-maintained-project</artifactId>
<groupId>io.github.gferrariuy</groupId>
<version>1.4.1.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>axis-model</artifactId>
<name>EMF Model for WSDD Files</name>
<url>${baseUrl}/model</url>
<build>
<extensions>
<extension>
<groupId>com.github.veithen.cosmos</groupId>
<artifactId>p2-maven-connector</artifactId>
<version>0.3</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>com.github.veithen.maven</groupId>
<artifactId>emf-maven-plugin</artifactId>
<version>0.1.0</version>
<executions>
<execution>
<goals>
<goal>generate-sources</goal>
</goals>
<configuration>
<genmodel>model/axis.genmodel</genmodel>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.eclipse.*:*</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>org.eclipse.*:*</artifact>
<includes>
<include>**/*.class</include>
</includes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>org.eclipse.emf</pattern>
<shadedPattern>org.apache.axis.model</shadedPattern>
</relocation>
<relocation>
<pattern>org.eclipse.xsd</pattern>
<shadedPattern>org.apache.axis.model.xsd</shadedPattern>
</relocation>
</relocations>
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<tags>
<tag>
<name>generated</name>
<placement>X</placement>
</tag>
<tag>
<name>model</name>
<placement>X</placement>
</tag>
<tag>
<name>ordered</name>
<placement>X</placement>
</tag>
</tags>
<doclint>all,-html</doclint>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.github.gferrariuy</groupId>
<artifactId>axis-rt-core</artifactId>
<version>1.4.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<site>
<id>axis</id>
<url>${baseSiteUrl}/model</url>
</site>
</distributionManagement>
</project>