btm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jwebmp.guicedee.persistence</groupId> <artifactId>btm</artifactId> <version>0.68.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.jwebmp.guicedee.persistence</groupId> <artifactId>persistence-parent</artifactId> <version>0.68.0.1</version> </parent> <artifactId>btm</artifactId> <name>JPMS Bitronix Transaction Manager :: Core</name> <packaging>jar</packaging> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> <license> <name>GPL 3</name> <url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>lorban</id> <name>Ludovic Orban</name> </developer> <developer> <id>brettwooldridge</id> <name>Brett Wooldridge</name> </developer> <developer> <id>GedMarc</id> <name>Marc Magon</name> <email>marc.magon@gmail.com</email> <url>https://github.com/GedMarc</url> </developer> </developers> <scm> <url>https://github.com/GedMarc?tab=repositories</url> </scm> <dependencies> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <optional>true</optional> <scope>provided</scope> </dependency> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.jwebmp.thirdparty.jms</groupId> <artifactId>javax.jms-api</artifactId> <optional>true</optional> <scope>provided</scope> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.thirdparty</groupId> <artifactId>javax.transaction</artifactId> <type>jar</type> </dependency> </dependencies> <profiles> <profile> <id>jdk8</id> <build> <plugins> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <executions> <execution> <id>add-module-infos</id> <phase>package</phase> <goals> <goal>add-module-info</goal> </goals> <configuration> <overwriteExistingFiles>true</overwriteExistingFiles> <module> <moduleInfoFile> src/jre11/java/module-info.java </moduleInfoFile> </module> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>