cepheus
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.orange.cepheus</groupId> <artifactId>cepheus</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.orange.cepheus</groupId> <artifactId>cepheus</artifactId> <packaging>pom</packaging> <version>1.0.0</version> <modules> <module>cepheus-cep</module> <module>cepheus-broker</module> </modules> <name>fiware-cepheus</name> <description>Fiware project bringing Complex Event Processing capability to NGSI gateways</description> <url>https://github.com/Orange-OpenSource/fiware-cepheus</url> <properties> <java.version>1.8</java.version> <ngsi-api.version>0.1.3</ngsi-api.version> <jackson-annotations-version>2.6.0</jackson-annotations-version> <spring-boot-version>1.2.3.RELEASE</spring-boot-version> <jacoco.dataPath>${project.basedir}/target/jacoco.exec</jacoco.dataPath> <jacoco.reportPath>${project.basedir}/../coverage</jacoco.reportPath> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.orange.fiware</groupId> <artifactId>ngsi-client</artifactId> <version>${ngsi-api.version}</version> </dependency> <dependency> <groupId>com.orange.fiware</groupId> <artifactId>ngsi-server</artifactId> <version>${ngsi-api.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <type>pom</type> <version>${spring-boot-version}</version> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <version>${spring-boot-version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>${spring-boot-version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> <version>${spring-boot-version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.4.1</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpasyncclient</artifactId> <version>4.1</version> </dependency> <dependency> <groupId>com.espertech</groupId> <artifactId>esper</artifactId> <version>5.3.0</version> <exclusions> <exclusion> <!-- Conflicts with version included by httpclient/httpasyncclient --> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>2.0.0</version> </dependency> <!-- test --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>4.1.6.RELEASE</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <scope>test</scope> </dependency> <!-- persistence --> <!-- Stay at 3.8.10.2 as 3.8.11 crashes on rPi --> <!-- See https://github.com/xerial/sqlite-jdbc/issues/58 --> <dependency> <groupId>org.xerial</groupId> <artifactId>sqlite-jdbc</artifactId> <version>3.8.10.2</version> </dependency> <!-- log --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.7</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.2</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.1.2</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.4.1</version> <executions> <execution> <id>enforce-dependency-convergence</id> <configuration> <rules> <dependencyConvergence></dependencyConvergence> </rules> <fail>false</fail> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>1.2.3.RELEASE</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <configuration> <delimiters> <delimiter>@</delimiter> </delimiters> <useDefaultDelimiters>false</useDefaultDelimiters> </configuration> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>2.1.11</version> <executions> <execution> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat> <generateGitPropertiesFile>true</generateGitPropertiesFile> <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.5</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.5.201505241946</version> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>3.1.0</version> <configuration> <repoToken>cFEGngKE9eOKlBaemQamWY3QnmPeEbzj1</repoToken> <sourceEncoding>UTF-8</sourceEncoding> </configuration> </plugin> <plugin> <groupId>com.lazerycode.jmeter</groupId> <artifactId>jmeter-maven-plugin</artifactId> <version>1.10.1</version> <dependencies> <dependency> <groupId>kg.apc</groupId> <artifactId>jmeter-plugins-extras-libs</artifactId> <version>1.3.0</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <configuration> <failOnError>false</failOnError> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <goals> <goal>jar</goal> </goals> </execution> </executions> </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.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.5</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.4.1</version> <executions> <execution> <id>enforce-no-snapshots</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireReleaseDeps> <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot> <message>No SNAPSHOT dependencies allowed for release!</message> <excludes> <!-- exclude child module dependencies --> <!--<exclude>${project.groupId}:*</exclude>--> </excludes> </requireReleaseDeps> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <runOrder>random</runOrder> </configuration> </plugin> </plugins> </build> </profile> </profiles> <repositories> <repository> <id>osgeo</id> <name>Open Source Geospatial Foundation Repository</name> <url>http://download.osgeo.org/webdav/geotools/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>osgeo</id> <name>Open Source Geospatial Foundation Repository</name> <url>http://download.osgeo.org/webdav/geotools/</url> </pluginRepository> </pluginRepositories> <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> <scm> <connection> scm:git:https://github.com/Orange-OpenSource/fiware-cepheus.git </connection> <developerConnection> scm:git:https://github.com/Orange-OpenSource/fiware-cepheus.git </developerConnection> <url>https://github.com/Orange-OpenSource/fiware-cepheus</url> </scm> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE Version 2</name> <url>http://www.gnu.org/licenses/gpl-2.0-standalone.html</url> </license> </licenses> <organization> <name>Orange</name> <url>http://www.orange.com</url> </organization> <developers> <developer> <id>marc</id> <name>Marc Capdevielle</name> <email>marc.capdevielle@orange.com</email> <organization>Orange</organization> <organizationUrl>http://www.orange.com</organizationUrl> <timezone>+1</timezone> </developer> <developer> <id>christophe</id> <name>Christophe Azemar</name> <email>christophe.azemar@orange.com</email> <organization>Orange</organization> <organizationUrl>http://www.orange.com</organizationUrl> <timezone>+1</timezone> </developer> <developer> <id>pascale</id> <name>Pascale Borscia</name> <email>pascale.borscia@orange.com</email> <organization>Orange</organization> <organizationUrl>http://www.orange.com</organizationUrl> <timezone>+1</timezone> </developer> </developers> </project>