sdc-ri
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.somda.sdc</groupId> <artifactId>sdc-ri</artifactId> <version>5.1.1</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>org.somda.sdc</groupId> <artifactId>sdc-ri</artifactId> <packaging>pom</packaging> <version>5.1.1</version> <name>SDC Reference Implementation</name> <description> SDCri is a set of Java libraries that implements a network communication framework conforming with the IEEE 11073 SDC specifications. </description> <url>http://www.somda.org</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>David Gregorczyk</name> <email>david.gregorczyk@web.de</email> <organizationUrl>https://gitlab.com/d.gregorczyk</organizationUrl> </developer> <developer> <name>Lukas Deichmann</name> <email>lukasdeichmann@gmail.com</email> <organizationUrl>https://gitlab.com/ldeichmann</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://gitlab.com/sdc-suite/sdc-ri.git</connection> <developerConnection>scm:git:git://gitlab.com/sdc-suite/sdc-ri.git</developerConnection> <url>https://gitlab.com/sdc-suite/sdc-ri/-/tree/develop</url> <tag>sdc-ri-5.1.1</tag> </scm> <modules> <module>common</module> <module>dpws</module> <module>test</module> <module>biceps</module> <module>glue</module> <module>glue-examples</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jaxbBasicsVersion>0.13.1</jaxbBasicsVersion> <log4j2Version>2.19.0</log4j2Version> <junitVersion>5.10.0</junitVersion> <junitPlatformVersion>1.10.0</junitPlatformVersion> <jaxbImplVersion>2.3.6</jaxbImplVersion> <jaxbRuntimeVersion>2.3.6</jaxbRuntimeVersion> <jaxbCoreVersion>2.3.0.1</jaxbCoreVersion> <jaxbApiVersion>2.3.1</jaxbApiVersion> <jaxb2MavenPluginVersion>0.15.3</jaxb2MavenPluginVersion> <jaxbThreetenCoreVersion>1.2</jaxbThreetenCoreVersion> <jaxbBuildHelperMavenPluginVersion>3.4.0</jaxbBuildHelperMavenPluginVersion> <mavenJarPluginVersion>3.3.0</mavenJarPluginVersion> <mavenCompilerPluginVersion>3.11.0</mavenCompilerPluginVersion> <guiceVersion>5.1.0</guiceVersion> <bouncyCastleVersion>1.76</bouncyCastleVersion> <riModelVersion>5.0.0</riModelVersion> <failsafePluginVersion>3.1.2</failsafePluginVersion> <surefirePluginVersion>3.1.2</surefirePluginVersion> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${mavenCompilerPluginVersion}</version> <configuration> <release>11</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.0</version> <configuration> <source>11</source> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalOptions>-Xdoclint:none</additionalOptions> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${surefirePluginVersion}</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.12.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <phase>validate</phase> <goals><goal>create</goal></goals> </execution> </executions> <configuration> <getRevisionOnlyOnce>true</getRevisionOnlyOnce> <shortRevisionLength>8</shortRevisionLength> <attach>true</attach> <addOutputDirectoryToResources>true</addOutputDirectoryToResources> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${mavenJarPluginVersion}</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Build-Time>${maven.build.timestamp}</Build-Time> </manifestEntries> <manifestSections> <manifestSection> <name>Versions</name> <manifestEntries> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-SCM-Revision>${buildNumber}</Implementation-SCM-Revision> <Implementation-SCM-Branch>${scmBranch}</Implementation-SCM-Branch> </manifestEntries> </manifestSection> </manifestSections> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.1</version> <configuration> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.7.0.0</version> <dependencies> <!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs --> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs</artifactId> <version>4.7.1</version> </dependency> </dependencies> <configuration> <includeTests>true</includeTests> </configuration> </plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-checkstyle-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.3.0</version> <configuration> <configLocation>checkstyle.xml</configLocation> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> </configuration> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>8.30</version> </dependency> </dependencies> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.8.2</version> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> </plugin> </plugins> </reporting> <profiles> <profile> <id>deploy</id> <build> <plugins> <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> <configuration> <!-- This is necessary for gpg to not try to use the pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j2Version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-jul --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-jul</artifactId> <version>${log4j2Version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j2-impl --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>${log4j2Version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.1.2-jre</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.inject/guice --> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>${guiceVersion}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.inject.extensions/guice-assistedinject --> <dependency> <groupId>com.google.inject.extensions</groupId> <artifactId>guice-assistedinject</artifactId> <version>${guiceVersion}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305 --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.platform/junit-platform-engine --> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-engine</artifactId> <version>${junitPlatformVersion}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junitVersion}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junitVersion}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junitVersion}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.mockito/mockito-core --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.4.0</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest --> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>2.2</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <name>SDCri releases</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <name>SDCri snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <!-- enable this to generate a unified report, but don't check this in! --> <!-- <site>--> <!-- <id>somda</id>--> <!-- <name>somda</name>--> <!-- <url>https://somda.org</url>--> <!-- </site>--> </distributionManagement> </project>