<?xml version='1.0' encoding='UTF-8'?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.javaVersion>1.7</project.build.javaVersion> </properties> <groupId>org.eclipse.californium</groupId> <artifactId>scandium</artifactId> <version>1.0.0-M2</version> <packaging>jar</packaging> <name>Scandium (Sc)</name> <description>Security for Californium</description> <url>https://www.eclipse.org/californium/</url> <organization> <name>Eclipse Foundation</name> <url>http://www.eclipse.org/</url> </organization> <licenses> <license> <name>Eclipse Public License - Version 1.0</name> <url>http://www.eclipse.org/org/documents/epl-v10.php</url> </license> <license> <name>Eclipse Distribution License - Version 1.0</name> <url>http://www.eclipse.org/org/documents/edl-v10.php</url> </license> </licenses> <scm> <developerConnection>scm:git:ssh://git@github.com/eclipse/californium.scandium.git</developerConnection> <url>https://github.com/eclipse/californium.scandium</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>mkovatsch</id> <name>Matthias Kovatsch</name> <email>kovatsch@inf.ethz.ch</email> <url>http://people.inf.ethz.ch/mkovatsc/</url> <organization>ETH Zurich</organization> <organizationUrl>http://www.vs.inf.ethz.ch/</organizationUrl> <roles> <role>Committer</role> <role>Lead</role> </roles> </developer> </developers> <repositories> <repository> <id>californium-releases</id> <name>Californium Repository - Releases</name> <url>https://repo.eclipse.org/content/repositories/californium-releases/</url> </repository> <repository> <id>californium-snapshots</id> <name>Californium Repository - Snapshots</name> <url>https://repo.eclipse.org/content/repositories/californium-snapshots/</url> </repository> </repositories> <distributionManagement> <repository> <id>repo.eclipse.org</id> <name>Californium Repository - Releases</name> <url>https://repo.eclipse.org/content/repositories/californium-releases/</url> </repository> <snapshotRepository> <id>repo.eclipse.org</id> <name>Californium Repository - Snapshots</name> <url>https://repo.eclipse.org/content/repositories/californium-snapshots/</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <!-- this profile generate all the needed artifact and signatures needed for releasing on maven central --> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <distributionManagement> <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-gpg-plugin</artifactId> <version>1.5</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.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.californium</groupId> <artifactId>element-connector</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>${project.build.javaVersion}</source> <target>${project.build.javaVersion}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <!-- JAR packaging --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <!-- nothing here --> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- configures the JDK Logging to use the ScandiumFormatter by means of the Scandium-logging.properties file --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <argLine>-Djava.util.logging.config.file=${project.build.testOutputDirectory}/Scandium-logging.properties</argLine> <excludes> <exclude>**/*$*</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.eclipse.californium</groupId> <artifactId>scandium</artifactId> <version>1.0.0-M2</version> </dependency>
org.eclipse.californium:scandium:1.0.0-M2