tomcat8jndi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.h-thurow</groupId> <artifactId>tomcat8jndi</artifactId> <version>1.0.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.h-thurow</groupId> <artifactId>tomcat8jndi</artifactId> <version>1.0.0</version> <name>${project.groupId}:${project.artifactId}</name> <description> Test DataSource and classes dependent on Tomcat's JNDI environment outside of Tomcat </description> <url>https://github.com/h-thurow/TomcatJNDI</url> <licenses> <license> <url> https://raw.githubusercontent.com/h-thurow/TomcatJNDI/master/LICENSE.txt </url> </license> </licenses> <scm> <connection>>scm:git:git//github.com/h-thurow/TomcatJNDI.git</connection> <developerConnection>scm:git:ssh//github.com/h-thurow/TomcatJNDI.git </developerConnection> <url>https://github.com/h-thurow/TomcatJNDI</url> </scm> <developers> <developer> <name>Holger Thurow</name> <email>thurow.h@gmail.com</email> <roles> <role>Java Developer</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> <version>8.0.47</version> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-logging-juli</artifactId> <version>8.0.47</version> </dependency> <dependency> <!-- Provides org.apache.tomcat.dbcp.dbcp2.BasicDataSourceFactory--> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-dbcp</artifactId> <version>8.0.47</version> <scope>provided</scope> </dependency> <dependency> <!-- Provides org.apache.tomcat.jdbc.pool.DataSourceFactory for org.apache.naming.factory.DataSourceLinkFactory --> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-jdbc</artifactId> <version>8.0.47</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <!-- 2.4.x: Java 8 --> <version>2.3.5</version> <scope>test</scope> </dependency> <!--<dependency>--> <!--<groupId>dumbster</groupId>--> <!--<artifactId>dumbster</artifactId>--> <!--<version>1.6</version>--> <!--<scope>test</scope>--> <!--</dependency>--> <dependency> <groupId>com.bitmechanic</groupId> <artifactId>dumbster</artifactId> <version>1.9.0.2</version> <scope>test</scope> </dependency> <!-- Java 8 required --> <!--<dependency>--> <!--<groupId>de.softwareforge</groupId>--> <!--<artifactId>dumbster</artifactId>--> <!--<version>2.0.0</version>--> <!--</dependency>--> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.4</version> <scope>provided</scope> </dependency> <!-- For Tomcat's default EJB support --> <dependency> <groupId>org.apache.openejb</groupId> <artifactId>openejb-standalone</artifactId> <version>4.7.4</version> <scope>provided</scope> <type>zip</type> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <excludes> <exclude>TomcatTestSuite.java</exclude> <exclude>UserTransactionTest.java</exclude> </excludes> <testFailureIgnore>true</testFailureIgnore> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> <sourceDirectory>src/main/java</sourceDirectory> <resources> <resource> <directory>/src/main/resources</directory> </resource> </resources> <testSourceDirectory>src/test/java</testSourceDirectory> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> </build> </project>