ebms-adapter-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gitlab.java-ebms-adapter</groupId> <artifactId>ebms-adapter-web</artifactId> <version>2.15.2-mic</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"> <modelVersion>4.0.0</modelVersion> <groupId>com.gitlab.java-ebms-adapter</groupId> <artifactId>ebms-adapter-web</artifactId> <version>2.15.2-mic</version> <packaging>war</packaging> <name>Web Application for ebMS Adapter</name> <description>Web Application for running the ebMS Adapter standalone</description> <url>https://gitlab.com/java-ebms-adapter/ebms-adapter-web/</url> <issueManagement> <system>Tickets</system> <url>https://gitlab.com/java-ebms-adapter/ebms-adapter-web/issues/</url> </issueManagement> <organization> <name>Clockwork</name> <url>www.clockwork.nl</url> </organization> <developers> <developer> <id>e.luinstra</id> <name>Edwin Luinstra</name> <email>edwin.luinstra@clockwork.nl</email> <organizationUrl>http://www.clockwork.nl</organizationUrl> <roles> <role>Architect</role> <role>Developer</role> </roles> <timezone>1</timezone> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@gitlab.com:java-ebms-adapter/ebms-adapter-web.git</connection> <developerConnection>scm:git:git@gitlab.com:java-ebms-adapter/ebms-adapter-web.git</developerConnection> <url>https://gitlab.com/java-ebms-adapter/ebms-adapter-web/</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>OSSRH snapshot repository</name> <url>${snapshot.repo.url}</url> </snapshotRepository> <repository> <id>ossrh</id> <name>OSSRH release repository</name> <url>${release.repo.url}</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <jdk.version>1.7</jdk.version> <spring.version>3.2.1.RELEASE</spring.version> <cxf.version>2.7.14</cxf.version> <activemq.version>5.10.0</activemq.version> <snapshot.repo.url>https://oss.sonatype.org/content/repositories/snapshots</snapshot.repo.url> <release.repo.url>https://oss.sonatype.org/service/local/staging/deploy/maven2</release.repo.url> <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> </properties> <dependencies> <dependency> <groupId>com.gitlab.java-ebms-adapter</groupId> <artifactId>ebms-core</artifactId> <version>2.15.2-mic</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jms</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>commons-pool</groupId> <artifactId>commons-pool</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>org.apache.xbean</groupId> <artifactId>xbean-spring</artifactId> <version>3.15</version> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-all</artifactId> <version>${activemq.version}</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jms_1.1_spec</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> <version>${cxf.version}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> <version>${cxf.version}</version> </dependency> <dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <version>0.9.2.1</version> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.3.2</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.34</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.3-1102-jdbc41</version> <scope>runtime</scope> </dependency> <dependency> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> <version>1.3.1</version> <scope>runtime</scope> </dependency> <!-- <dependency>--> <!-- <groupId>com.oracle</groupId>--> <!-- <artifactId>ojdbc7</artifactId>--> <!-- <version>12.1.0.2</version>--> <!-- <scope>runtime</scope>--> <!-- </dependency>--> <!-- Test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <version>2.5.0</version> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <id>central</id> <name>Maven Central</name> <url>https://repo1.maven.org/maven2/</url> <layout>default</layout> </repository> </repositories> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> <encoding>UTF-8</encoding> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.3</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <packageName>${project.groupId}</packageName> <addClasspath>true</addClasspath> <addExtensions/> <classpathPrefix/> </manifest> </archive> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <configuration> <source>${jdk.version}</source> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.19.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.6.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.9.1</version> <configuration> <detail>true</detail> <enableFilesSummary>true</enableFilesSummary> <enableRulesSummary>true</enableRulesSummary> <enableSeveritySummary>true</enableSeveritySummary> <headerLocation>${basedir}/resources/reporting/license.txt</headerLocation> <linkXRef>true</linkXRef> <configLocation>${basedir}/resources/reporting/checkstyle.xml</configLocation> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> <configuration> <findbugsXmlOutputDirectory>${basedir}/target</findbugsXmlOutputDirectory> <xmlOutput>true</xmlOutput> <xmlOutputDirectory>target/site</xmlOutputDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.7.1</version> <configuration> <linkXRef>true</linkXRef> <targetJdk>${jdk.version}</targetJdk> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId> <version>2.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <version>2.4</version> <configuration> <tags> <tag>TODO</tag> <tag>@todo</tag> <tag>FIXME</tag> <tag>@fixme</tag> <tag>@deprecated</tag> </tags> </configuration> </plugin> </plugins> </reporting> <profiles> <!-- Activate using the 'release' property: mvn clean install -Prelease --> <profile> <id>release</id> <activation> <property> <name>release</name> </property> </activation> <build> <plugins> <!-- Publish the release to Maven Central --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>build-sources-jar</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>create-javadoc-jar</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>${jdk.version}</source> <doclint>none</doclint> <sourcepath>src/main/java</sourcepath> <failOnError>false</failOnError> <fixClassComment>true</fixClassComment> <fixFieldComment>true</fixFieldComment> <fixMethodComment>true</fixMethodComment> </configuration> </plugin> <!-- PGP sign the artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>pgp-sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>