Skip to content

Commit

Permalink
Changing version to 1.0.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
imedina committed Mar 17, 2017
1 parent 0e30bb2 commit fd056d2
Show file tree
Hide file tree
Showing 19 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion opencga-analysis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion opencga-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion opencga-catalog/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion opencga-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion opencga-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion opencga-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion opencga-storage/opencga-storage-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga-storage</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion opencga-storage/opencga-storage-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga-storage</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public CellBaseRestVariantAnnotator(StorageConfiguration storageConfiguration, O
ClientConfiguration clientConfiguration = storageConfiguration.getCellbase().toClientConfiguration();
clientConfiguration.getRest().setTimeout(TIMEOUT);
CellBaseClient cellBaseClient;
cellBaseClient = new CellBaseClient(species, assembly, clientConfiguration);
cellBaseClient = new CellBaseClient(species, clientConfiguration);
this.cellBaseClient = cellBaseClient;

logger.info("Annotating with Cellbase REST. host '{}', version '{}', species '{}', assembly '{}'",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga-storage-hadoop</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public VariantHadoopDBAdaptor(Connection connection, HBaseCredentials credential
if (StringUtils.isEmpty(species)) {
species = clientConfiguration.getDefaultSpecies();
}
cellBaseClient = new CellBaseClient(AbstractCellBaseVariantAnnotator.toCellBaseSpeciesName(species), assembly, clientConfiguration);
cellBaseClient = new CellBaseClient(AbstractCellBaseVariantAnnotator.toCellBaseSpeciesName(species), clientConfiguration);

clientSideSkip = !options.getBoolean(PhoenixHelper.PHOENIX_SERVER_OFFSET_AVAILABLE, true);
this.queryParser = new VariantSqlQueryParser(genomeHelper, this.variantTable, new VariantDBAdaptorUtils(this),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga-storage-hadoop</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<!--<relativePath>../pom.xml</relativePath>-->
</parent>

<!--<groupId>org.opencb.opencga</groupId>-->
<artifactId>opencga-storage-hadoop-deps</artifactId>
<version>1.0.0-final-SNAPSHOT</version>
<version>1.0.0</version>

<properties>
<checkstyle.skip>true</checkstyle.skip>
Expand Down
8 changes: 4 additions & 4 deletions opencga-storage/opencga-storage-hadoop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@
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>
<properties>
<opencga-storage-hadoop-deps.version>${opencga.version}-SNAPSHOT</opencga-storage-hadoop-deps.version>
<opencga-storage-hadoop-deps.version>${opencga.version}</opencga-storage-hadoop-deps.version>
</properties>
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga-storage</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>opencga-storage-hadoop</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<modules>
Expand All @@ -43,7 +43,7 @@
<id>opencga-storage-hadoop-deps</id>
<activation>
<file>
<missing>${user.home}/.m2/repository/org/opencb/opencga/opencga-storage-hadoop-deps/1.0.0-final-SNAPSHOT/opencga-storage-hadoop-deps-1.0.0-final-SNAPSHOT.jar</missing>
<missing>${user.home}/.m2/repository/org/opencb/opencga/opencga-storage-hadoop-deps/1.0.0/opencga-storage-hadoop-deps-1.0.0.jar</missing>
</file>
</activation>
<modules>
Expand Down
2 changes: 1 addition & 1 deletion opencga-storage/opencga-storage-mongodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga-storage</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public VariantMongoDBAdaptor(MongoDataStoreManager mongoManager, MongoCredential
if (StringUtils.isEmpty(species)) {
species = clientConfiguration.getDefaultSpecies();
}
cellBaseClient = new CellBaseClient(AbstractCellBaseVariantAnnotator.toCellBaseSpeciesName(species), assembly, clientConfiguration);
cellBaseClient = new CellBaseClient(AbstractCellBaseVariantAnnotator.toCellBaseSpeciesName(species), clientConfiguration);
this.cacheManager = new CacheManager(storageConfiguration);
this.variantSearchManager = new VariantSearchManager(utils, storageConfiguration);
NUMBER_INSTANCES.incrementAndGet();
Expand Down
2 changes: 1 addition & 1 deletion opencga-storage/opencga-storage-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga-storage</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions opencga-storage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
<parent>
<groupId>org.opencb.opencga</groupId>
<artifactId>opencga</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<!-- Version must be set to a literal, variables cannot be used in nested modules -->
<artifactId>opencga-storage</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion opencga-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>org.opencb.opencga</groupId>
<artifactId>opencga-test</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<dependencies>
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>org.opencb.opencga</groupId>
<artifactId>opencga</artifactId>
<version>1.0.0-final</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<modules>
Expand All @@ -36,12 +36,12 @@
</modules>

<properties>
<opencga.version>1.0.0-final</opencga.version>
<opencga.version>1.0.0</opencga.version>
<java.version>1.8</java.version>
<biodata.version>1.0.0-SNAPSHOT</biodata.version>
<cellbase.version>4.5.0-SNAPSHOT</cellbase.version>
<java-common-libs.version>3.4.1-SNAPSHOT</java-common-libs.version>
<hpg-bigdata.version>1.0.0-beta2-SNAPSHOT</hpg-bigdata.version>
<biodata.version>1.0.0</biodata.version>
<cellbase.version>4.5.0-rc.1</cellbase.version>
<java-common-libs.version>3.4.1</java-common-libs.version>
<hpg-bigdata.version>1.0.0-beta1</hpg-bigdata.version>
<jackson.version>2.6.6</jackson.version>
<jersey.version>2.23</jersey.version>
<hadoop.version>2.7.1</hadoop.version>
Expand Down

0 comments on commit fd056d2

Please sign in to comment.