mithlond-services-content-impl-ejb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.mithlond.services.content.impl.ejb</groupId> <artifactId>mithlond-services-content-impl-ejb</artifactId> <version>1.1.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- +=============================================== --> <!-- | Section 1: Project information --> <!-- +=============================================== --> <parent> <groupId>se.mithlond.codestyle.poms</groupId> <artifactId>mithlond-codestyle-parent</artifactId> <version>2.1.0</version> <relativePath /> </parent> <groupId>se.mithlond.services.content.impl.ejb</groupId> <artifactId>mithlond-services-content-impl-ejb</artifactId> <version>1.1.0</version> <name>${project.artifactId}</name> <description>Mithlond Service: Content (EJB Implementation, version ${project.version})</description> <url>${site.top.url}/${path.in.reactor}</url> <properties> <!-- Define the name and type of this reactor --> <path.in.reactor>content/content-impl-ejb</path.in.reactor> <reactor.name>mithlond-services</reactor.name> <!-- Build-controlling properties --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <timestamp>${maven.build.timestamp}</timestamp> <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss.sssZ</maven.build.timestamp.format> </properties> <!-- +=============================================== --> <!-- | Section 2: Dependency (management) settings --> <!-- +=============================================== --> <dependencies> <!-- Internal dependencies --> <dependency> <groupId>se.mithlond.services.content.api</groupId> <artifactId>mithlond-services-content-api</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>se.mithlond.services.organisation.api</groupId> <artifactId>mithlond-services-organisation-api</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>se.mithlond.services.shared.test.entity</groupId> <artifactId>mithlond-services-shared-entity-test</artifactId> <version>1.1.0</version> <scope>test</scope> </dependency> <!-- External dependencies --> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>se.jguru.nazgul.test.xmlbinding</groupId> <artifactId>nazgul-core-xmlbinding-test</artifactId> <version>${nazgul-core.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <scope>test</scope> </dependency> </dependencies> <!-- +=============================================== --> <!-- | Section 3: Build settings --> <!-- +=============================================== --> <!-- build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.16</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>6.11.2</version> </dependency> <dependency> <groupId>se.jguru.nazgul.tools.codestyle</groupId> <artifactId>nazgul-codestyle</artifactId> <version>${nazgul.tools.version}</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> </build --> <!-- +=============================================== --> <!-- | Section 4: External systems --> <!-- +=============================================== --> <!-- Compensate for Maven standard variable extrapolation. Git requires steady URLs (... but Subversion requires path extrapolation, hence the problem). --> <distributionManagement> <site> <id>github</id> <url>${distroManagement.url}</url> </site> </distributionManagement> <scm> <connection>${scm.connection.url}</connection> <developerConnection>${scm.devConnection.url}</developerConnection> <url>${scm.url}</url> <tag>backend-services-1.1.1</tag> </scm> </project>