|
@@ -13,96 +13,101 @@
|
|
|
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
- <parent>
|
|
|
- <groupId>fr.chickenkiller.nifi</groupId>
|
|
|
- <artifactId>nifi-xmpp-processor</artifactId>
|
|
|
- <version>1.0</version>
|
|
|
- </parent>
|
|
|
+ <parent>
|
|
|
+ <groupId>fr.chickenkiller.nifi</groupId>
|
|
|
+ <artifactId>nifi-xmpp-processor</artifactId>
|
|
|
+ <version>1.0</version>
|
|
|
+ </parent>
|
|
|
|
|
|
- <artifactId>nifi-xmpp-processors</artifactId>
|
|
|
- <packaging>jar</packaging>
|
|
|
+ <artifactId>nifi-xmpp-processors</artifactId>
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
|
|
- <properties>
|
|
|
- <smack.version>4.4.8</smack.version>
|
|
|
- <spotless.version>2.45.0</spotless.version>
|
|
|
- <lombok.version>1.18.38</lombok.version>
|
|
|
- </properties>
|
|
|
+ <properties>
|
|
|
+ <smack.version>4.4.8</smack.version>
|
|
|
+ <spotless.version>2.45.0</spotless.version>
|
|
|
+ <lombok.version>1.18.38</lombok.version>
|
|
|
+ </properties>
|
|
|
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>org.igniterealtime.smack</groupId>
|
|
|
- <artifactId>smack-tcp</artifactId>
|
|
|
- <version>${smack.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.igniterealtime.smack</groupId>
|
|
|
- <artifactId>smack-java8</artifactId>
|
|
|
- <version>${smack.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.igniterealtime.smack</groupId>
|
|
|
- <artifactId>smack-extensions</artifactId>
|
|
|
- <version>${smack.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.diffplug.spotless</groupId>
|
|
|
- <artifactId>spotless-maven-plugin</artifactId>
|
|
|
- <version>${spotless.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
- <version>${lombok.version}</version>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
- <build>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <annotationProcessorPaths>
|
|
|
- <path>
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
- <version>${lombok.version}</version>
|
|
|
- </path>
|
|
|
- </annotationProcessorPaths>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>com.diffplug.spotless</groupId>
|
|
|
- <artifactId>spotless-maven-plugin</artifactId>
|
|
|
- <version>${spotless.version}</version>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <goals>
|
|
|
- <goal>check</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- <configuration>
|
|
|
- <!-- define a language-specific format -->
|
|
|
- <java>
|
|
|
- <importOrder />
|
|
|
- <removeUnusedImports />
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.igniterealtime.smack</groupId>
|
|
|
+ <artifactId>smack-tcp</artifactId>
|
|
|
+ <version>${smack.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.igniterealtime.smack</groupId>
|
|
|
+ <artifactId>smack-java8</artifactId>
|
|
|
+ <version>${smack.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.igniterealtime.smack</groupId>
|
|
|
+ <artifactId>smack-extensions</artifactId>
|
|
|
+ <version>${smack.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.diffplug.spotless</groupId>
|
|
|
+ <artifactId>spotless-maven-plugin</artifactId>
|
|
|
+ <version>${spotless.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>${lombok.version}</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <annotationProcessorPaths>
|
|
|
+ <path>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>${lombok.version}</version>
|
|
|
+ </path>
|
|
|
+ </annotationProcessorPaths>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>com.diffplug.spotless</groupId>
|
|
|
+ <artifactId>spotless-maven-plugin</artifactId>
|
|
|
+ <version>${spotless.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <!-- define a language-specific format -->
|
|
|
+ <java>
|
|
|
+ <importOrder/>
|
|
|
+ <removeUnusedImports/>
|
|
|
|
|
|
- <palantirJavaFormat>
|
|
|
- <version>2.39.0</version>
|
|
|
- <style>PALANTIR</style>
|
|
|
- <formatJavadoc>true</formatJavadoc>
|
|
|
- </palantirJavaFormat>
|
|
|
+ <palantirJavaFormat>
|
|
|
+ <version>2.39.0</version>
|
|
|
+ <style>PALANTIR</style>
|
|
|
+ <formatJavadoc>true</formatJavadoc>
|
|
|
+ </palantirJavaFormat>
|
|
|
|
|
|
- <formatAnnotations />
|
|
|
- </java>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
+ <formatAnnotations/>
|
|
|
+ </java>
|
|
|
+ <pom>
|
|
|
+ <!-- These are the defaults, you can override if you want -->
|
|
|
+ <includes>
|
|
|
+ <include>pom.xml</include>
|
|
|
+ </includes>
|
|
|
+ <sortPom/>
|
|
|
+ </pom>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>check</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
</project>
|