nflow-explorer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.nitorcreations</groupId>
<artifactId>nflow-explorer</artifactId>
<version>1.2.8</version>
</dependency><?xml version="1.0"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.nitorcreations</groupId>
<artifactId>nflow-explorer</artifactId>
<version>1.2.8</version>
<packaging>pom</packaging>
<name>nflow-explorer</name>
<description>nFlow Explorer</description>
<url>https://github.com/NitorCreations/nflow-explorer</url>
<inceptionYear>2014</inceptionYear>
<organization>
<name>Nitor Creations Oy</name>
<url>http://www.nitorcreations.com</url>
</organization>
<developers>
<developer>
<name>Juha Syrjälä</name>
<email>juha.syrjala@nitorcreations.com</email>
</developer>
<developer>
<name>Esa Puttonen</name>
<email>esa.puttonen@nitorcreations.com</email>
</developer>
<developer>
<name>Edvard Fonsell</name>
<email>edvard.fonsell@nitorcreations.com</email>
</developer>
</developers>
<licenses>
<license>
<name>European Union Public Licence V. 1.1</name>
<url>https://raw.githubusercontent.com/NitorCreations/nflow/master/EUPL-v1.1-Licence.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<developerConnection>scm:git:git@github.com:NitorCreations/nflow-explorer.git</developerConnection>
<connection>scm:git:git@github.com:NitorCreations/nflow-explorer.git</connection>
<url>https://github.com/NitorCreations/nflow-explorer</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<grunt.target>build</grunt.target>
<frontend-maven.version>1.6</frontend-maven.version>
<maven-assembly.version>3.1.0</maven-assembly.version>
<maven-clean.version>3.1.0</maven-clean.version>
<maven-deploy.version>2.8.2</maven-deploy.version>
<maven-gpg.version>1.6</maven-gpg.version>
<maven-install.version>2.5.2</maven-install.version>
<maven-site.version>3.7.1</maven-site.version>
<nexus-staging-maven.version>1.6.8</nexus-staging-maven.version>
<node.version>v8.11.4</node.version> <!-- https://nodejs.org/en/download/releases/ -->
<npm.version>6.4.0</npm.version> <!-- https://github.com/npm/cli/releases -->
<versions-maven-plugin.version>2.5</versions-maven-plugin.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${versions-maven-plugin.version}</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven-clean.version}</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy.version}</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>${maven-install.version}</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>${maven-site.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontend-maven.version}</version>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<nodeVersion>${node.version}</nodeVersion>
<npmVersion>${npm.version}</npmVersion>
</configuration>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<arguments>--color ci</arguments>
</configuration>
</execution>
<execution>
<id>bower install</id>
<goals>
<goal>bower</goal>
</goals>
<phase>process-sources</phase>
</execution>
<execution>
<id>grunt build</id>
<goals>
<goal>grunt</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>${grunt.target} --color --force</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly.version}</version>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<attach>true</attach>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<id>build-dist</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus-staging-maven.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>