Skip to content

Commit

Permalink
add blueprints to distribution pom
Browse files Browse the repository at this point in the history
due to commit for #5256 that modify scope of deps against blueprints to provided
  • Loading branch information
robfrank committed Nov 2, 2015
1 parent 3671eba commit 152905a
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 29 deletions.
1 change: 1 addition & 0 deletions client/pom.xml
Expand Up @@ -52,6 +52,7 @@
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-test-commons</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down
14 changes: 8 additions & 6 deletions distributed/pom.xml
Expand Up @@ -29,6 +29,7 @@
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<artifactId>orientdb-distributed</artifactId>
Expand Down Expand Up @@ -91,6 +92,13 @@
</profiles>

<dependencies>

<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-test-commons</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-server</artifactId>
Expand All @@ -110,12 +118,6 @@
<!-- SET SCOPE=RUNTIME TO ENABLE STARTING DISTRIBUTED SERVER IN IDE (IntelliJ)-->
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-all</artifactId>
Expand Down
24 changes: 22 additions & 2 deletions distribution/pom.xml
Expand Up @@ -10,7 +10,7 @@
the specific language governing permissions and ~ limitations under the License. -->

<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">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -78,6 +78,24 @@
<artifactId>orientdb-graphdb</artifactId>
<version>${project.version}</version>
</dependency>

<!-- #5256 removed dep from orientdb-graphdb -->
<dependency>
<groupId>com.tinkerpop.rexster</groupId>
<artifactId>rexster-core</artifactId>
<version>${blueprints.version}</version>
</dependency>
<dependency>
<groupId>com.tinkerpop.gremlin</groupId>
<artifactId>gremlin-java</artifactId>
<version>${blueprints.version}</version>
</dependency>
<dependency>
<groupId>com.tinkerpop.gremlin</groupId>
<artifactId>gremlin-groovy</artifactId>
<version>${blueprints.version}</version>
</dependency>

<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-etl</artifactId>
Expand All @@ -93,6 +111,8 @@
<artifactId>orientdb-jdbc</artifactId>
<version>${project.version}</version>
</dependency>


</dependencies>

<profiles>
Expand Down Expand Up @@ -129,7 +149,7 @@
</plugin>
</plugins>
</build>
</profile>
</profile>
<profile>
<id>localDeploy</id>
<activation>
Expand Down
3 changes: 2 additions & 1 deletion etl/pom.xml
Expand Up @@ -43,7 +43,7 @@
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<dependencyReducedPomLocation>${basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -99,6 +99,7 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
Expand Down
11 changes: 2 additions & 9 deletions graphdb/pom.xml
Expand Up @@ -12,7 +12,7 @@
~ */ -->

<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">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -42,7 +42,7 @@
com.orientechnologies.orient.graph.*,
com.tinkerpop.blueprints.impls.orient
</osgi.export>
<blueprints.version>2.6.0</blueprints.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<argLine>-ea -Xmx3G -Xss2048k -Dindex.flushAfterCreate=false
-Dstorage.makeFullCheckpointAfterCreate=false
Expand Down Expand Up @@ -76,13 +76,6 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-core</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions jdbc/pom.xml
Expand Up @@ -82,11 +82,6 @@
<descriptors>
<descriptor>src/assembly/all.xml</descriptor>
</descriptors>
<!--<finalName>${project.artifactId}-${project.version}-all</finalName>-->
<!--<appendAssemblyId>false</appendAssemblyId>-->
<!--<descriptorRefs>-->
<!--<descriptorRef>jar-with-dependencies</descriptorRef>-->
<!--</descriptorRefs>-->
</configuration>
<executions>
<execution>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -175,6 +175,7 @@
<maven.compiler.target>1.6</maven.compiler.target>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ssZ</maven.build.timestamp.format>
<implementation.build>${scmBranch}@r${buildNumber}</implementation.build>
<blueprints.version>2.6.0</blueprints.version>
<!-- | Configuration properties for the OSGi maven-bundle-plugin -->
<osgi.fragment.host/>
<osgi.export>${project.groupId}.*;version=${project.version};-noimport:=true</osgi.export>
Expand Down
14 changes: 8 additions & 6 deletions tools/pom.xml
Expand Up @@ -44,21 +44,23 @@
<dependencies>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-client</artifactId>
<artifactId>orientdb-test-commons</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-core</artifactId>
<artifactId>orientdb-client</artifactId>
<version>${project.version}</version>
</dependency>


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-core</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

<build>
Expand Down

0 comments on commit 152905a

Please sign in to comment.