Skip to content

Commit dd36482

Browse files
authored
Support NiFi 2.7.2, drop older versions, dependency bumps (#24)
1 parent 3ec5432 commit dd36482

1 file changed

Lines changed: 12 additions & 61 deletions

File tree

authorizer/pom.xml

Lines changed: 12 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212

1313
<name>nifiopa</name>
1414
<description>A plugin for nifi to support opa authorization.</description>
15-
<!-- FIXME change it to the project's website -->
16-
<!--<url>http://www.example.com</url>-->
15+
<url>https://github.com/stackabletech/nifi-opa-plugin</url>
1716

1817
<properties>
1918
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -23,22 +22,22 @@
2322
<dependency>
2423
<groupId>com.styra</groupId>
2524
<artifactId>opa</artifactId>
26-
<version>1.7.0</version>
25+
<version>2.1.1</version>
2726
</dependency>
2827
<dependency>
2928
<groupId>org.apache.logging.log4j</groupId>
3029
<artifactId>log4j-slf4j-impl</artifactId>
31-
<version>2.20.0</version>
30+
<version>2.25.3</version>
3231
</dependency>
3332
<dependency>
3433
<groupId>org.apache.logging.log4j</groupId>
3534
<artifactId>log4j-core</artifactId>
36-
<version>2.20.0</version>
35+
<version>2.25.3</version>
3736
</dependency>
3837
<dependency>
3938
<groupId>org.apache.logging.log4j</groupId>
4039
<artifactId>log4j-api</artifactId>
41-
<version>2.20.0</version>
40+
<version>2.25.3</version>
4241
</dependency>
4342
<dependency>
4443
<groupId>org.apache.nifi</groupId>
@@ -49,12 +48,12 @@
4948
<dependency>
5049
<groupId>junit</groupId>
5150
<artifactId>junit</artifactId>
52-
<version>3.8.1</version>
51+
<version>4.13.2</version>
5352
</dependency>
5453
<dependency>
5554
<groupId>com.github.ben-manes.caffeine</groupId>
5655
<artifactId>caffeine</artifactId>
57-
<version>3.1.8</version>
56+
<version>3.2.3</version>
5857
</dependency>
5958
</dependencies>
6059

@@ -132,14 +131,6 @@
132131
</build>
133132

134133
<profiles>
135-
<profile>
136-
<id>nifi-1.27.0</id>
137-
<properties>
138-
<nifi-framework-api.version>1.27.0</nifi-framework-api.version>
139-
<maven.compiler.source>11</maven.compiler.source>
140-
<maven.compiler.target>11</maven.compiler.target>
141-
</properties>
142-
</profile>
143134
<profile>
144135
<id>nifi-1.28.1</id>
145136
<properties>
@@ -149,60 +140,20 @@
149140
</properties>
150141
</profile>
151142
<profile>
152-
<id>nifi-2.0.0</id>
153-
<properties>
154-
<nifi-framework-api.version>2.0.0</nifi-framework-api.version>
155-
<maven.compiler.source>21</maven.compiler.source>
156-
<maven.compiler.target>21</maven.compiler.target>
157-
</properties>
158-
</profile>
159-
<profile>
160-
<id>nifi-2.1.0</id>
161-
<properties>
162-
<nifi-framework-api.version>2.1.0</nifi-framework-api.version>
163-
<maven.compiler.source>21</maven.compiler.source>
164-
<maven.compiler.target>21</maven.compiler.target>
165-
</properties>
166-
</profile>
167-
<profile>
168-
<id>nifi-2.2.0</id>
169-
<properties>
170-
<nifi-framework-api.version>2.2.0</nifi-framework-api.version>
171-
<maven.compiler.source>21</maven.compiler.source>
172-
<maven.compiler.target>21</maven.compiler.target>
173-
</properties>
174-
</profile>
175-
<profile>
176-
<id>nifi-2.3.0</id>
177-
<properties>
178-
<nifi-framework-api.version>2.3.0</nifi-framework-api.version>
179-
<maven.compiler.source>21</maven.compiler.source>
180-
<maven.compiler.target>21</maven.compiler.target>
181-
</properties>
182-
</profile>
183-
<profile>
184-
<id>nifi-2.4.0</id>
185-
<properties>
186-
<nifi-framework-api.version>2.4.0</nifi-framework-api.version>
187-
<maven.compiler.source>21</maven.compiler.source>
188-
<maven.compiler.target>21</maven.compiler.target>
189-
</properties>
190-
</profile>
191-
<profile>
192-
<id>nifi-2.5.0</id>
143+
<id>nifi-2.6.0</id>
193144
<properties>
194-
<nifi-framework-api.version>2.5.0</nifi-framework-api.version>
145+
<nifi-framework-api.version>2.6.0</nifi-framework-api.version>
195146
<maven.compiler.source>21</maven.compiler.source>
196147
<maven.compiler.target>21</maven.compiler.target>
197148
</properties>
198149
</profile>
199150
<profile>
200-
<id>nifi-2.6.0</id>
151+
<id>nifi-2.7.2</id>
201152
<activation>
202153
<activeByDefault>true</activeByDefault>
203154
</activation>
204155
<properties>
205-
<nifi-framework-api.version>2.6.0</nifi-framework-api.version>
156+
<nifi-framework-api.version>2.7.2</nifi-framework-api.version>
206157
<maven.compiler.source>21</maven.compiler.source>
207158
<maven.compiler.target>21</maven.compiler.target>
208159
</properties>
@@ -216,4 +167,4 @@
216167
</plugin>
217168
</plugins>
218169
</reporting>
219-
</project>
170+
</project>

0 commit comments

Comments
 (0)