Skip to content

Commit

Permalink
22.4.12 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Firat Kucuk committed Apr 17, 2022
1 parent 6afa7c6 commit 187389e
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 1 deletion.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
# Lilo
Lilo is a super-fast GraphQL stitching library. Project is heavily inspired by Atlassian Braid, but it seems no more maintained.

## Installation

Add dependencies to your `pom.xml` file.

```xml
<dependencies>
...
<dependency>
<groupId>io.fria</groupId>
<artifactId>lilo</artifactId>
<version>22.4.12</version>
</dependency>
...
</dependencies>
```

If you're using gradle add the dependency to your `build.gradle` file.

```groovy
implementation 'io.fria:lilo:22.4.12'
```

## Basic Usage

```java
Expand Down
40 changes: 39 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.fria</groupId>
<artifactId>lilo</artifactId>
<version>22.4.11</version>
<version>22.4.12</version>

<name>lilo-graphql</name>
<description>Lilo GraphQL stitching library</description>
Expand Down Expand Up @@ -139,6 +139,19 @@
</executions>
</plugin>

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.2</version>
Expand Down Expand Up @@ -166,6 +179,31 @@
<excludes>**/module-info.java</excludes>
</configuration>
</plugin>

<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>

0 comments on commit 187389e

Please sign in to comment.