Skip to content

Commit

Permalink
parent pom.xml for soa-model
Browse files Browse the repository at this point in the history
  • Loading branch information
r41d committed May 1, 2015
1 parent 628a5ca commit 9d30e4e
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 74 deletions.
63 changes: 7 additions & 56 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,83 +2,38 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.predic8</groupId>
<artifactId>soa-model-core</artifactId>
<version>1.5.1</version>
<name>${project.artifactId}</name>
<packaging>jar</packaging>


<name>Membrane SOA Model</name>
<description>Membrane SOA Model is an open-source toolkit and Java API for WSDL and XML Schema, licensed under ASF 2.0. that can:

Parse, create or modify a WSDL or XML Schema Document from Java
Compare two WSDL or XML Schema Documents
Create a SOAP Request or Template
Analyze a WSDL or Schema document and generate an HMTL report</description>
<url>https://github.com/membrane/soa-model</url>


<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>


<developers>
<developer>
<name>Predic8</name>
<email>[email protected]</email>
<organization>Predic8</organization>
<organizationUrl>http://www.predic8.de/</organizationUrl>
</developer>
</developers>

<organization>
<name>predic8 GmbH</name>
<url>http://predic8.com/</url>
</organization>

<scm>
<connection>scm:git:[email protected]:membrane/soa-model.git</connection>
<developerConnection>scm:git:[email protected]:membrane/soa-model.git</developerConnection>
<url>https://github.com/membrane/soa-model</url>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<gpg.keyname>5B8A65F6</gpg.keyname>
<groovy.version>2.3.9</groovy.version>
<slf4j.version>1.7.9</slf4j.version>
</properties>
<parent>
<groupId>com.predic8</groupId>
<artifactId>soa-model-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.5.2</version>
</parent>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-xml</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-json</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.2.2</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
Expand All @@ -89,24 +44,20 @@ Analyze a WSDL or Schema document and generate an HMTL report</description>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-test</artifactId>
<version>${groovy.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
28 changes: 10 additions & 18 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.predic8</groupId>

<artifactId>soa-model-distribution</artifactId>
<version>1.5.1</version>
<name>${project.artifactId}</name>
<packaging>jar</packaging>

<parent>
<groupId>com.predic8</groupId>
<artifactId>soa-model-parent</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.5.2</version>
</parent>

<dependencies>
<dependency>
Expand All @@ -14,31 +22,15 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>2.0.4</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.2.2</version>
</dependency>
<!--
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.2</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
-->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>

</dependencies>

<build>
Expand Down
134 changes: 134 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
<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">
<modelVersion>4.0.0</modelVersion>

<groupId>com.predic8</groupId>
<artifactId>soa-model-parent</artifactId>
<version>1.5.2</version>
<packaging>pom</packaging>

<name>Membrane SOA Model</name>
<description>Membrane SOA Model is an open-source toolkit and Java API for WSDL and XML Schema, licensed under ASF 2.0. that can:

Parse, create or modify a WSDL or XML Schema Document from Java
Compare two WSDL or XML Schema Documents
Create a SOAP Request or Template
Analyze a WSDL or Schema document and generate an HMTL report</description>
<url>https://github.com/membrane/soa-model</url>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<developers>
<developer>
<name>Predic8</name>
<email>[email protected]</email>
<organization>Predic8</organization>
<organizationUrl>http://www.predic8.de/</organizationUrl>
</developer>
</developers>

<organization>
<name>predic8 GmbH</name>
<url>http://predic8.com/</url>
</organization>

<scm>
<connection>scm:git:[email protected]:membrane/soa-model.git</connection>
<url>https://github.com/membrane/soa-model</url>
</scm>

<issueManagement>
<system>Github Issue Tracker</system>
<url>https://github.com/membrane/soa-model/issues</url>
</issueManagement>

<modules>
<module>core</module>
<module>distribution</module>
</modules>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<gpg.keyname>5B8A65F6</gpg.keyname>
<groovy.version>2.3.9</groovy.version>
<slf4j.version>1.7.9</slf4j.version>
</properties>


<dependencyManagement>
<dependencies>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-xml</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-json</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.2.2</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-test</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.2.2</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>

</dependencies>
</dependencyManagement>


</project>

0 comments on commit 9d30e4e

Please sign in to comment.