Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
Java Client API
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Genesys PGR
Java Client API
Commits
fd43c42a
Commit
fd43c42a
authored
Mar 13, 2015
by
Matija Obreza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Maven release plugin
parent
675ebe89
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
58 additions
and
5 deletions
+58
-5
.classpath
.classpath
+0
-5
.gitignore
.gitignore
+1
-0
README.md
README.md
+26
-0
pom.xml
pom.xml
+31
-0
No files found.
.classpath
View file @
fd43c42a
...
...
@@ -17,11 +17,6 @@
<attribute
name=
"maven.pomderived"
value=
"true"
/>
</attributes>
</classpathentry>
<classpathentry
excluding=
"**"
kind=
"src"
output=
"target/test-classes"
path=
"src/test/resources"
>
<attributes>
<attribute
name=
"maven.pomderived"
value=
"true"
/>
</attributes>
</classpathentry>
<classpathentry
kind=
"con"
path=
"org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"
>
<attributes>
<attribute
name=
"maven.pomderived"
value=
"true"
/>
...
...
.gitignore
View file @
fd43c42a
...
...
@@ -2,3 +2,4 @@
/local.properties
/prd.properties
/target
.settings
README.md
0 → 100644
View file @
fd43c42a
# Genesys PGR - Java API Client
**genesys-client-api**
library aims to ease integration of your existing
accession management software in Java with
[
Genesys PGR portal
](
https://www.genesys-pgr.org
"Visit Genesys PGR"
)
.
## How to use `genesys-client-api`
The genesys-client-api is
### Your copy of the library
*
In Eclipse, clone the
`genesys-client-api`
repository into a new project
*
Right-click on the
`genesys-client-api`
project and select Maven ... Install.
*
This will install the current version of the library into your
**local**
maven repository
### Your new project
*
Create a new Maven project in Eclipse, if starting from scratch
*
Add dependency on org.genesys2:genesys-client-api artefact to your
`pom.xml`
```
<dependency>
<groupId>org.genesys2</groupId>
<artifactId>genesys-client-api</artifactId>
<version>0.0.2-SNAPSHOT</version>
</dependency>```
* Create your integration project
pom.xml
View file @
fd43c42a
...
...
@@ -8,6 +8,29 @@
<name>
Genesys Client
</name>
<packaging>
jar
</packaging>
<licenses>
<license>
<name>
The Apache License, Version 2.0
</name>
<url>
http://www.apache.org/licenses/LICENSE-2.0.txt
</url>
</license>
</licenses>
<scm>
<connection>
https://bitbucket.org/genesys2/genesys-client-api.git
</connection>
<developerConnection>
scm:git:git@bitbucket.org:genesys2/genesys-client-api.git
</developerConnection>
<url>
git@bitbucket.org:genesys2/genesys-client-api.git
</url>
</scm>
<developers>
<developer>
<name>
Matija Obreza
</name>
<email>
matija.obreza@croptrust.org
</email>
<organization>
Global Crop Diversity Trust
</organization>
<organizationUrl>
http://www.croptrust.org
</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<jdk.target>
1.6
</jdk.target>
...
...
@@ -37,6 +60,14 @@
<testFailureIgnore>
false
</testFailureIgnore>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-release-plugin
</artifactId>
<version>
2.5.1
</version>
<configuration>
<pushChanges>
false
</pushChanges>
</configuration>
</plugin>
</plugins>
</build>
...
...
Write
Preview
Markdown
is supported
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