Skip to content

Commit eeba6f1

Browse files
author
Gorbasch
committed
push version to 2.3.0
1 parent 7c961a6 commit eeba6f1

File tree

6 files changed

+29
-22
lines changed

6 files changed

+29
-22
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ This is why we created this custom controller service which adds an alternative
66

77
## Installation
88

9-
1. Download the latest .nar file from the [release page](https://github.com/Digital-Loop/nifi-gcp-oauth2-access-token/releases).
10-
2. Copy it to the `extensions` directory of your Apache NiFi deployment.
9+
1. Download the latest .nar file from the [release page](https://github.com/Digital-Loop/nifi-gcp-oauth2-access-token/releases/latest).
10+
2. Copy it to the `nar_extensions` directory of your Apache NiFi deployment.
11+
3. Restart Apache NiFi.
1112

1213
## Manual Build
1314

1415
```
1516
mvn clean install
16-
cp nifi-gcp-oauth2-provider-nar/target/nifi-gcp-oauth2-provider-nar-1.28.1.nar $NIFI_HOME/extensions
17+
cp nifi-gcp-oauth2-provider-nar/target/nifi-gcp-oauth2-provider-nar-2.3.0.nar $NIFI_HOME/nar_extensions
1718
```
1819

1920
## Usage

nifi-gcp-oauth2-provider-nar/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>com.dloop</groupId>
2424
<artifactId>nifi-gcp-oauth2-bundle</artifactId>
25-
<version>1.28.1</version>
25+
<version>2.3.0</version>
2626
</parent>
2727

2828
<artifactId>nifi-gcp-oauth2-provider-nar</artifactId>
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>org.apache.nifi</groupId>
4545
<artifactId>nifi-gcp-nar</artifactId>
46-
<version>1.28.1</version>
46+
<version>2.3.0</version>
4747
<type>nar</type>
4848
</dependency>
4949
</dependencies>

nifi-gcp-oauth2-provider/pom.xml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.dloop</groupId>
2424
<artifactId>nifi-gcp-oauth2-bundle</artifactId>
25-
<version>1.28.1</version>
25+
<version>2.3.0</version>
2626
</parent>
2727

2828
<artifactId>nifi-gcp-oauth2-provider</artifactId>
2929
<packaging>jar</packaging>
3030

3131
<properties>
32-
<google.libraries.version>26.47.0</google.libraries.version>
32+
<google.libraries.version>26.56.0</google.libraries.version>
3333
</properties>
3434

3535
<dependencyManagement>
@@ -73,37 +73,43 @@
7373
<dependency>
7474
<groupId>org.apache.nifi</groupId>
7575
<artifactId>nifi-utils</artifactId>
76-
<version>1.28.1</version>
76+
<version>2.3.0</version>
7777
<scope>provided</scope>
7878
</dependency>
7979
<dependency>
8080
<groupId>org.apache.nifi</groupId>
8181
<artifactId>nifi-gcp-services-api</artifactId>
82-
<version>1.28.1</version>
82+
<version>2.3.0</version>
8383
<scope>provided</scope>
8484
</dependency>
8585
<dependency>
8686
<groupId>org.apache.nifi</groupId>
8787
<artifactId>nifi-gcp-processors</artifactId>
88-
<version>1.28.1</version>
88+
<version>2.3.0</version>
8989
<scope>provided</scope>
9090
</dependency>
9191
<dependency>
9292
<groupId>org.apache.nifi</groupId>
9393
<artifactId>nifi-oauth2-provider-api</artifactId>
94-
<version>1.28.1</version>
94+
<version>2.3.0</version>
9595
<scope>provided</scope>
9696
</dependency>
9797
<dependency>
9898
<groupId>org.apache.nifi</groupId>
9999
<artifactId>nifi-oauth2-provider-service</artifactId>
100-
<version>1.28.1</version>
100+
<version>2.3.0</version>
101+
<scope>test</scope>
102+
</dependency>
103+
<dependency>
104+
<groupId>org.apache.nifi</groupId>
105+
<artifactId>nifi-proxy-configuration-api</artifactId>
106+
<version>2.3.0</version>
101107
<scope>test</scope>
102108
</dependency>
103109
<dependency>
104110
<groupId>org.apache.nifi</groupId>
105111
<artifactId>nifi-mock</artifactId>
106-
<version>1.28.1</version>
112+
<version>2.3.0</version>
107113
<scope>test</scope>
108114
</dependency>
109115
<dependency>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nifi-gcp-oauth2-bundle",
3-
"version": "1.28.1",
3+
"version": "2.3.0",
44
"description": "Fortunately Apache NiFi already ships with a couple of processors which provide connections to Google APIs. But since there are dozens of Google APIs and they are also subject to changes from time to time, it's to expect that NiFi cannot offer a specialized processor for all of them out of the box. In our case we were missing a processor for the APIs of [Search Console](https://developers.google.com/webmaster-tools/v1/api_reference_index) and [Business Profile](https://developers.google.com/my-business/ref_overview).",
55
"author": {
66
"name": "Digital Loop GmbH",

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121

2222
<parent>
2323
<groupId>org.apache.nifi</groupId>
24-
<artifactId>nifi-nar-bundles</artifactId>
25-
<version>1.28.1</version>
24+
<artifactId>nifi-extension-bundles</artifactId>
25+
<version>2.3.0</version>
2626
</parent>
2727

2828
<groupId>com.dloop</groupId>
2929
<artifactId>nifi-gcp-oauth2-bundle</artifactId>
30-
<version>1.28.1</version>
30+
<version>2.3.0</version>
3131
<packaging>pom</packaging>
3232

3333
<modules>
@@ -36,8 +36,8 @@
3636
</modules>
3737

3838
<properties>
39-
<maven.compiler.source>11</maven.compiler.source>
40-
<maven.compiler.target>11</maven.compiler.target>
41-
<minimalJavaBuildVersion>11</minimalJavaBuildVersion>
39+
<maven.compiler.source>21</maven.compiler.source>
40+
<maven.compiler.target>21</maven.compiler.target>
41+
<minimalJavaBuildVersion>21</minimalJavaBuildVersion>
4242
</properties>
4343
</project>

0 commit comments

Comments
 (0)