Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/osgi/apache-karaf-feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.graphql-java-kickstart</groupId>
<artifactId>graphql-java-servlet-osgi-examples</artifactId>
<version>6.2.1-SNAPSHOT</version>
<version>7.3.4-SNAPSHOT</version>
</parent>

<artifactId>graphql-java-servlet-osgi-examples-karaf-feature</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions examples/osgi/apache-karaf-package/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.graphql-java-kickstart</groupId>
<artifactId>graphql-java-servlet-osgi-examples</artifactId>
<version>6.2.1-SNAPSHOT</version>
<version>7.3.4-SNAPSHOT</version>
</parent>

<artifactId>graphql-java-servlet-osgi-examples-apache-karaf-package</artifactId>
Expand Down Expand Up @@ -112,4 +112,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
6 changes: 3 additions & 3 deletions examples/osgi/buildAndRun.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
mvn clean install
pushd apache-karaf-package/target
tar zxvf graphql-java-servlet-osgi-examples-apache-karaf-package-3.0.1.tar.gz
cd graphql-java-servlet-osgi-examples-apache-karaf-package-3.0.1/bin
tar zxvf graphql-java-servlet-osgi-examples-apache-karaf-package-7.3.4-SNAPSHOT.tar.gz
cd graphql-java-servlet-osgi-examples-apache-karaf-package-7.3.4-SNAPSHOT/bin
./karaf debug
popd
popd
8 changes: 4 additions & 4 deletions examples/osgi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

<groupId>com.graphql-java-kickstart</groupId>
<artifactId>graphql-java-servlet-osgi-examples</artifactId>
<version>6.2.1-SNAPSHOT</version>
<version>7.3.4-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
<karaf.version>4.1.6</karaf.version>
<graphql.java.servlet.version>6.2.1-SNAPSHOT</graphql.java.servlet.version>
<graphql.java.version>10.0</graphql.java.version>
<karaf.version>4.2.4</karaf.version>
<graphql.java.servlet.version>7.3.4-SNAPSHOT</graphql.java.servlet.version>
<graphql.java.version>11.0</graphql.java.version>
</properties>

<modules>
Expand Down
4 changes: 2 additions & 2 deletions examples/osgi/providers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.graphql-java-kickstart</groupId>
<artifactId>graphql-java-servlet-osgi-examples</artifactId>
<version>6.2.1-SNAPSHOT</version>
<version>7.3.4-SNAPSHOT</version>
</parent>

<artifactId>graphql-java-servlet-osgi-examples-providers</artifactId>
Expand Down Expand Up @@ -54,4 +54,4 @@
</plugins>
</build>

</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public Collection<GraphQLFieldDefinition> getQueries() {
fieldDefinitions.add(newFieldDefinition()
.type(GraphQLString)
.name("hello")
.description("Basic example of a GraphQL Java Servlet provider using the Apache Karaf OSGi Runtime")
.staticValue("world")
.build());
return fieldDefinitions;
Expand Down