Skip to content

Commit

Permalink
Moving rejoiner framework java source into subdirectory so that addit…
Browse files Browse the repository at this point in the history
…ional top level directories can be added
  • Loading branch information
siderakis-at-google committed Dec 10, 2017
1 parent 09f6c31 commit 052bc30
Show file tree
Hide file tree
Showing 32 changed files with 122 additions and 0 deletions.
File renamed without changes.
4 changes: 4 additions & 0 deletions WORKSPACE → rejoiner/WORKSPACE
Expand Up @@ -60,3 +60,7 @@ maven_jar(
name = "aop",
artifact = "aopalliance:aopalliance:jar:1.0",
)
maven_jar(
name = "future_converter",
artifact = "net.javacrumbs.future-converter:future-converter-java8-guava:1.1.0"
)
118 changes: 118 additions & 0 deletions rejoiner/pom.xml
@@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2017 Google LLC
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
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for 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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<groupId>com.google.api.graphql</groupId>
<artifactId>rejoiner</artifactId>
<name>Rejoiner</name>
<version>0.0.1-SNAPSHOT</version>
<description>Generating GraphQL schemas from Protobufs.</description>
<url>https://github.com/google/rejoiner</url>
<packaging>jar</packaging>

<scm>
<url>http://github.com/google/rejoiner/</url>
<connection>scm:git:git://github.com/google/rejoiner.git</connection>
<developerConnection>scm:git:ssh://git@github.com/google/rejoiner.git</developerConnection>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>GitHub Issues</system>
<url>http://github.com/google/rejoiner/issues</url>
</issueManagement>

<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<organization>
<name>Google, Inc.</name>
<url>http://www.google.com</url>
</organization>

<dependencies>
<dependency>
<groupId>aopalliance</groupId>
<artifactId>aopalliance</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java</artifactId>
<version>6.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.5-jre</version>
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-multibindings</artifactId>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>4.1.0</version>
</dependency>
</dependencies>
</project>

0 comments on commit 052bc30

Please sign in to comment.