neo4j-config-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.thorntail</groupId> <artifactId>neo4j-config-api</artifactId> <version>2.7.0</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <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> <parent> <groupId>io.thorntail</groupId> <artifactId>nosql-config-api-parent</artifactId> <version>2.7.0</version> </parent> <artifactId>neo4j-config-api</artifactId> <packaging>jar</packaging> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <dependencies> <dependency> <groupId>io.thorntail</groupId> <artifactId>config-api-generator</artifactId> <version>${version.wildfly-config-api}</version> </dependency> </dependencies> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>org.wildfly.swarm.config.generator.generator.Generator</mainClass> <includePluginDependencies>true</includePluginDependencies> <includeProjectDependencies>true</includeProjectDependencies> <arguments> <argument>${project.basedir}/src/main/resources/generator-config.json</argument> <argument>${project.build.directory}/generated-sources</argument> <argument>${project.groupId}:${project.artifactId}:${project.version}</argument> </arguments> <systemProperties> <systemProperty> <key>java.util.logging.SimpleFormatter.format</key> <value>%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$-6s %2$s %5$s%6$s%n</value> </systemProperty> </systemProperties> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <executions> <execution> <id>verify</id> <phase>verify</phase> <configuration> <sourceDirectories> <sourceDirectory>${project.build.directory}/generated-sources</sourceDirectory> </sourceDirectories> <configLocation>../checkstyle.xml</configLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <logViolationsToConsole>true</logViolationsToConsole> <failsOnError>true</failsOnError> </configuration> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <!-- use existing running WildFly server instead of starting a new instance <plugin> <groupId>org.wildfly.plugins</groupId> <artifactId>wildfly-maven-plugin</artifactId> <version>${version.org.wildfly.plugins.maven}</version> <executions> <execution> <id>start</id> <goals> <goal>start</goal> </goals> <phase>validate</phase> <configuration> <groupId>org.wildfly.nosql</groupId> <artifactId>neo4j-server-dist</artifactId> <version>1.0.0.Alpha1-SNAPSHOT</version> <server-config>standalone.xml</server-config> </configuration> </execution> <execution> <id>stop</id> <goals> <goal>shutdown</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemProperties> <property> <name>APIGEN_CFG_DIR</name> <value>${project.basedir}/src/main/resources</value> </property> <property> <name>java.util.logging.SimpleFormatter.format</name> <value>%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$-6s %2$s %5$s%6$s%n </value> </property> </systemProperties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <show>public</show> <reportOutputDirectory>${project.reporting.outputDirectory}/${project.version}</reportOutputDirectory> <header>Neo4j Configuration API, ${project.version}</header> <footer>Neo4j Configuration API, ${project.version}</footer> <doctitle>Neo4j Configuration API, ${project.version}</doctitle> </configuration> </plugin> </plugins> </build> </project>