Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
GenDB3
lib.dbxref
Commits
93fec04b
Commit
93fec04b
authored
Apr 26, 2017
by
Lukas Jelonek
Browse files
updating poms for 2.0.1 branch with snapshot versions
parent
b99dc85b
Changes
1
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
93fec04b
<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>
de.cebitec.common
</groupId>
<artifactId>
dbxref
</artifactId>
<version>
2.0.1-SNAPSHOT
</version>
<packaging>
bundle
</packaging>
<name>
DbXRef library
</name>
<licenses>
<license>
<url>
http://www.gnu.org/licenses/gpl-3.0.html
</url>
</license>
</licenses>
<description>
Library for resolving of database cross references (dbxrefs) to urls.
</description>
<scm>
<developerConnection>
scm:git:https://git.computational.bio.uni-giessen.de/gendb3/lib-dbxref.git
</developerConnection>
<tag>
HEAD
</tag>
</scm>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>
org.hibernate.javax.persistence
</groupId>
<artifactId>
hibernate-jpa-2.1-api
</artifactId>
<version>
1.0.0.Final
</version>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-jpamodelgen
</artifactId>
<version>
1.2.0.Final
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.kohsuke.metainf-services
</groupId>
<artifactId>
metainf-services
</artifactId>
<version>
1.5
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
<version>
16.0.1
</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.11
</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.hibernate
</groupId>
<artifactId>
hibernate-entitymanager
</artifactId>
<version>
4.2.2.Final
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.h2database
</groupId>
<artifactId>
h2
</artifactId>
<version>
[1.3.171,)
</version>
<scope>
test
</scope>
</dependency>
<!-- Additional debuging dependencies -->
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-jdk14
</artifactId>
<version>
1.7.5
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
p6spy
</groupId>
<artifactId>
p6spy
</artifactId>
<version>
1.3
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
commons-io
</groupId>
<artifactId>
commons-io
</artifactId>
<version>
2.4
</version>
</dependency>
<dependency>
<groupId>
com.google.code.gson
</groupId>
<artifactId>
gson
</artifactId>
<version>
2.6.2
</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.apache.felix
</groupId>
<artifactId>
maven-bundle-plugin
</artifactId>
<version>
2.3.7
</version>
<extensions>
true
</extensions>
<configuration>
<instructions>
<Include-Resource>
{maven-resources},
META-INF/services=${project.build.outputDirectory}/META-INF/services
</Include-Resource>
<SPI-Consumer>
*
</SPI-Consumer>
<SPI-Provider>
*
</SPI-Provider>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.1
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
<encoding>
${project.build.sourceEncoding}
</encoding>
<compilerArgument>
-Xlint:unchecked
</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-resources-plugin
</artifactId>
<version>
2.4.3
</version>
<configuration>
<encoding>
${project.build.sourceEncoding}
</encoding>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-failsafe-plugin
</artifactId>
<version>
2.17
</version>
<executions>
<execution>
<goals>
<goal>
integration-test
</goal>
<goal>
verify
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.jfrog.buildinfo
</groupId>
<artifactId>
artifactory-maven-plugin
</artifactId>
<version>
2.6.1
</version>
<inherited>
false
</inherited>
<executions>
<execution>
<id>
build-info
</id>
<goals>
<goal>
publish
</goal>
</goals>
<configuration>
<deployProperties>
</deployProperties>
<publisher>
<!-- Define user and password as environment variables. -->
<username>
{{ARTIFACTORY_USER}}
</username>
<password>
{{ARTIFACTORY_PASSWORD}}
</password>
<contextUrl>
https://artifactory.computational.bio.uni-giessen.de/artifactory
</contextUrl>
<repoKey>
libs-release-local
</repoKey>
<snapshotRepoKey>
libs-snapshot-local
</snapshotRepoKey>
</publisher>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
external.atlassian.jgitflow
</groupId>
<artifactId>
jgitflow-maven-plugin
</artifactId>
<version>
1.0-m5.1
</version>
<configuration>
<autoVersionSubmodules>
true
</autoVersionSubmodules>
<localOnly>
true
</localOnly>
<noDeploy>
true
</noDeploy>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-site-plugin
</artifactId>
<version>
3.6
</version>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-report-plugin
</artifactId>
<version>
2.20
</version>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
jdepend-maven-plugin
</artifactId>
<version>
2.0
</version>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
cobertura-maven-plugin
</artifactId>
<version>
2.7
</version>
<configuration>
<formats>
<format>
html
</format>
<format>
xml
</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
findbugs-maven-plugin
</artifactId>
<version>
3.0.4
</version>
<configuration>
<argLine>
-Xmx512m
</argLine>
<argLine>
-XX:MaxPermSize=512zm
</argLine>
</configuration>
</plugin>
</plugins>
</reporting>
<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>
de.cebitec.common
</groupId>
<artifactId>
dbxref
</artifactId>
<version>
2.0.1-SNAPSHOT
</version>
<packaging>
bundle
</packaging>
<name>
DbXRef library
</name>
<licenses>
<license>
<url>
http://www.gnu.org/licenses/gpl-3.0.html
</url>
</license>
</licenses>
<description>
Library for resolving of database cross references (dbxrefs) to urls.
</description>
<scm>
<developerConnection>
scm:git:https://git.computational.bio.uni-giessen.de/gendb3/lib-dbxref.git
</developerConnection>
<tag>
HEAD
</tag>
</scm>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>
org.hibernate.javax.persistence
</groupId>
<artifactId>
hibernate-jpa-2.1-api
</artifactId>
<version>
1.0.0.Final
</version>
</dependency>
<dependency>
<groupId>
org.hibernate
</groupId>
<artifactId>
hibernate-jpamodelgen
</artifactId>
<version>
1.2.0.Final
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.kohsuke.metainf-services
</groupId>
<artifactId>
metainf-services
</artifactId>
<version>
1.5
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
<version>
16.0.1
</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.11
</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.hibernate
</groupId>
<artifactId>
hibernate-entitymanager
</artifactId>
<version>
4.2.2.Final
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.h2database
</groupId>
<artifactId>
h2
</artifactId>
<version>
[1.3.171,)
</version>
<scope>
test
</scope>
</dependency>
<!-- Additional debuging dependencies -->
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-jdk14
</artifactId>
<version>
1.7.5
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
p6spy
</groupId>
<artifactId>
p6spy
</artifactId>
<version>
1.3
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
commons-io
</groupId>
<artifactId>
commons-io
</artifactId>
<version>
2.4
</version>
</dependency>
<dependency>
<groupId>
com.google.code.gson
</groupId>
<artifactId>
gson
</artifactId>
<version>
2.6.2
</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.apache.felix
</groupId>
<artifactId>
maven-bundle-plugin
</artifactId>
<version>
2.3.7
</version>
<extensions>
true
</extensions>
<configuration>
<instructions>
<Include-Resource>
{maven-resources},
META-INF/services=${project.build.outputDirectory}/META-INF/services
</Include-Resource>
<SPI-Consumer>
*
</SPI-Consumer>
<SPI-Provider>
*
</SPI-Provider>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.1
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
<encoding>
${project.build.sourceEncoding}
</encoding>
<compilerArgument>
-Xlint:unchecked
</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-resources-plugin
</artifactId>
<version>
2.4.3
</version>
<configuration>
<encoding>
${project.build.sourceEncoding}
</encoding>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-failsafe-plugin
</artifactId>
<version>
2.17
</version>
<executions>
<execution>
<goals>
<goal>
integration-test
</goal>
<goal>
verify
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.jfrog.buildinfo
</groupId>
<artifactId>
artifactory-maven-plugin
</artifactId>
<version>
2.6.1
</version>
<inherited>
false
</inherited>
<executions>
<execution>
<id>
build-info
</id>
<goals>
<goal>
publish
</goal>
</goals>
<configuration>
<deployProperties>
</deployProperties>
<publisher>
<!-- Define user and password as environment variables. -->
<username>
{{ARTIFACTORY_USER}}
</username>
<password>
{{ARTIFACTORY_PASSWORD}}
</password>
<contextUrl>
https://artifactory.computational.bio.uni-giessen.de/artifactory
</contextUrl>
<repoKey>
libs-release-local
</repoKey>
<snapshotRepoKey>
libs-snapshot-local
</snapshotRepoKey>
</publisher>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
external.atlassian.jgitflow
</groupId>
<artifactId>
jgitflow-maven-plugin
</artifactId>
<version>
1.0-m5.1
</version>
<configuration>
<autoVersionSubmodules>
true
</autoVersionSubmodules>
<localOnly>
true
</localOnly>
<noDeploy>
true
</noDeploy>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-site-plugin
</artifactId>
<version>
3.6
</version>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-report-plugin
</artifactId>
<version>
2.20
</version>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
jdepend-maven-plugin
</artifactId>
<version>
2.0
</version>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
cobertura-maven-plugin
</artifactId>
<version>
2.7
</version>
<configuration>
<formats>
<format>
html
</format>
<format>
xml
</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
findbugs-maven-plugin
</artifactId>
<version>
3.0.4
</version>
<configuration>
<argLine>
-Xmx512m
</argLine>
<argLine>
-XX:MaxPermSize=512zm
</argLine>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment