tracker
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>es.e-ucm.tracker</groupId> <artifactId>tracker</artifactId> <version>0.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright © 2016 e-UCM (http://www.e-ucm.es/) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <parent> <relativePath>../pom.xml</relativePath> <groupId>es.e-ucm.tracker</groupId> <artifactId>tracker-parent</artifactId> <version>0.1.0</version> </parent> <artifactId>tracker</artifactId> <packaging>jar</packaging> <name>Java xAPI Tracker</name> <description>Java xAPI Tracker library</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>es.e-ucm.asset</groupId> <artifactId>manager</artifactId> <version>0.3.0</version> </dependency> </dependencies> <build> <finalName>tracker</finalName> <plugins> <!-- Set up the LICENSE Header plugin --> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <!-- Java formatter --> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> </plugin> <!-- Set up the Cobertura Maven plugin in the build section of the project pom.xml --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <outputDirectory>${basedir}/target</outputDirectory> <format>xml</format> <maxmem>256m</maxmem> <!-- aggregated reports for multi-module projects --> <aggregate>false</aggregate> </configuration> </plugin> <!-- Set up the Coveralls maven plugin in the build section of the project pom.xml --> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <configuration> <coberturaReports> <coberturaReport>${basedir}/target/coverage.xml</coberturaReport> </coberturaReports> <sourceEncoding>UTF-8</sourceEncoding> <serviceName>travis-ci</serviceName> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </build> </project>