sdh-scm-harvester
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.smartdeveloperhub.harvester</groupId>
<artifactId>sdh-scm-harvester</artifactId>
<version>0.1.0</version>
</dependency><!--
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
This file is part of the Smart Developer Hub Project:
http://www.smartdeveloperhub.org/
Center for Open Middleware
http://www.centeropenmiddleware.com/
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
Copyright (C) 2015 Center for Open Middleware.
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
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.
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
Artifact : org.smartdeveloperhub.harvester:sdh-scm-harvester:0.1.0
Bundle : scmharvester.war
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
-->
<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>
<parent>
<groupId>org.smartdeveloperhub</groupId>
<artifactId>sdh-build</artifactId>
<version>0.1.0</version>
</parent>
<groupId>org.smartdeveloperhub.harvester</groupId>
<artifactId>sdh-scm-harvester</artifactId>
<version>0.1.0</version>
<!-- <groupId>sdh</groupId> -->
<!-- <artifactId>scmharvester</artifactId> -->
<!-- =================================================================== -->
<!-- MODULE INFORMATION -->
<!-- =================================================================== -->
<name>SDH :: SCMHarvester</name>
<description>This harvester publishes gitlab data such as users, repositories,
and branches. To do so it uses the sdh gitlab enhancer rest api.</description>
<packaging>war</packaging>
<!-- =================================================================== -->
<!-- BUILD SETTINGS -->
<!-- =================================================================== -->
<build>
<finalName>scmharvester</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<failOnMissingWebXml>true</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<server>TomcatServer</server>
<path>/scmharvester</path>
</configuration>
</plugin>
<!-- <plugin> -->
<!-- <groupId>org.glassfish.maven.plugin</groupId> -->
<!-- <artifactId>maven-glassfish-plugin</artifactId> -->
<!-- <version>2.1</version> -->
<!-- <configuration> -->
<!-- <glassfishDirectory>/home/hagarcia/apps/glassfish4/glassfish</glassfishDirectory> -->
<!-- <user>admin</user> -->
<!-- <passwordFile>/home/hagarcia/apps/glassfish4/glassfish/domains/domain1/config/admin-keyfile</passwordFile> -->
<!-- <domain> -->
<!-- <name>domain1</name> -->
<!-- <httpPort>8080</httpPort> -->
<!-- <adminPort>4848</adminPort> -->
<!-- </domain> -->
<!-- <components> -->
<!-- <component> -->
<!-- <name>${project.artifactId}</name> -->
<!-- <artifact>target/${project.build.finalName}.war</artifact> -->
<!-- </component> -->
<!-- </components> -->
<!-- <debug>true</debug> -->
<!-- <terse>false</terse> -->
<!-- <echo>true</echo> -->
<!-- </configuration> -->
<!-- </plugin> -->
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<!-- if your container implements Servlet API older than 3.0, use "jersey-container-servlet-core" -->
<artifactId>jersey-container-servlet-core</artifactId>
<version>2.18</version>
</dependency>
<!-- Required only when you are using JAX-RS Client -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
<version>2.18</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.18</version>
</dependency>
<dependency>
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>apache-jena-libs</artifactId>
<type>pom</type>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-iostreams</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.smartdeveloperhub.vocabulary</groupId>
<artifactId>sdh-vocabulary</artifactId>
<version>0.1.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<!-- <properties> -->
<!-- <jersey.version>2.17</jersey.version> -->
<!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> -->
<!-- </properties> -->
</project>