Skip to content

Commit

Permalink
Update licences to correct organization.
Browse files Browse the repository at this point in the history
  • Loading branch information
rfinkers committed Mar 22, 2013
1 parent 59b192b commit 52def5f
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 71 deletions.
122 changes: 61 additions & 61 deletions pom.xml
@@ -1,74 +1,74 @@
<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>
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>nl.wur.plantbreeding</groupId>
<artifactId>chebi2gene</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<groupId>nl.wur.plantbreeding</groupId>
<artifactId>chebi2gene</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>chebi2gene</name>
<url>http://maven.apache.org</url>
<name>chebi2gene</name>
<url>http://maven.apache.org</url>

<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Wageningen UR Plant breeding</name>
<url>http://www.plantbreeding.wur.nl</url>
<name>Wageningen UR Plant breeding</name>
<url>http://www.plantbreeding.wur.nl</url>
</organization>
<developers>
<developer>
<id>rf</id>
<name>Richard Finkers</name>
<email>richard.finkers@wur.nl</email>
<url>http://www.finkers.tk</url>
<timezone>+1</timezone>
<organization>Wageningen UR</organization>
<organizationUrl>http://www.plantbreeding.wur.nl</organizationUrl>
<roles>
<role>Manager</role>
<role>developer</role>
</roles>
</developer>
<developer>
<name>Pierre-Yves Chibon</name>
<timezone>+1</timezone>
<organization>Wageningen UR</organization>
<organizationUrl>http://www.plantbreeding.wur.nl</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>rf</id>
<name>Richard Finkers</name>
<email>richard.finkers@wur.nl</email>
<url>http://www.finkers.tk</url>
<timezone>+1</timezone>
<organization>Wageningen UR</organization>
<organizationUrl>http://www.plantbreeding.wur.nl</organizationUrl>
<roles>
<role>Manager</role>
<role>developer</role>
</roles>
</developer>
<developer>
<name>Pierre-Yves Chibon</name>
<timezone>+1</timezone>
<organization>Wageningen UR</organization>
<organizationUrl>http://www.plantbreeding.wur.nl</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skipTests>true</skipTests>
</properties>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skipTests>true</skipTests>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.hp.hpl.jena</groupId>
<artifactId>jena</artifactId>
<version>2.6.4</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.hp.hpl.jena</groupId>
<artifactId>arq</artifactId>
<version>2.8.8</version>
<type>jar</type>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.hp.hpl.jena</groupId>
<artifactId>jena</artifactId>
<version>2.6.4</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.hp.hpl.jena</groupId>
<artifactId>arq</artifactId>
<version>2.8.8</version>
<type>jar</type>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions src/main/java/nl/wur/plantbreeding/chebi2gene/Chebi2gene.java
@@ -1,6 +1,6 @@
/*
* Copyright 2011 Pierre-Yves Chibon <py@chibon.fr>.
*
* Copyright 2013 Wageningen UR Plant breeding.
*
* 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
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/nl/wur/plantbreeding/chebi2gene/QueryRdf.java
@@ -1,5 +1,5 @@
/*
* Copyright 2011 Pierre-Yves Chibon <py@chibon.fr>.
* Copyright 2013 Wageningen UR Plant breeding.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,6 +29,11 @@
*/
public class QueryRdf extends QueryRdfEngine {

/**
* The logger.
*/
private static final Logger LOG = Logger.getLogger(
QueryRdf.class.getName());
/**
* Graph containing the ITAG information.
*/
Expand All @@ -45,11 +50,6 @@ public class QueryRdf extends QueryRdfEngine {
* Graph containing rhea from EBI.
*/
private final String rhea = "FROM <http://rhea.pbr.wur.nl/> \n";
/**
* The logger.
*/
private static final Logger LOG = Logger.getLogger(
QueryRdf.class.getName());

/**
* Default constructor.
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2011 pierrey.
* Copyright 2013 Wageningen UR Plant breeding.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2011 Pierre-Yves Chibon <py@chibon.fr>.
* Copyright 2013 Wageningen UR Plant breeding.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 52def5f

Please sign in to comment.