injector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.pilato.elasticsearch.injector</groupId> <artifactId>injector</artifactId> <version>8.16</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>fr.pilato.elasticsearch.injector</groupId> <artifactId>injector</artifactId> <name>Demos: Person Injector</name> <version>8.16</version> <description>Injector for Demos</description> <url>https://github.com/dadoonet/injector</url> <issueManagement> <system>GitHub</system> <url>https://github.com/dadoonet/injector/issues/</url> </issueManagement> <inceptionYear>2013</inceptionYear> <developers> <developer> <id>dadoonet</id> <name>David Pilato</name> <email>david at elastic.co</email> <organization>Elastic</organization> <organizationUrl>https://www.elastic.co/</organizationUrl> <roles> <role>Developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:dadoonet/injector.git</connection> <developerConnection>scm:git:git@github.com:dadoonet/injector.git</developerConnection> <tag>injector-8.16</tag> <url>scm:git:git@github.com:dadoonet/injector.git</url> </scm> <build> <resources> <resource> <targetPath>${project.basedir}</targetPath> <filtering>true</filtering> <directory>src/main/documentation</directory> </resource> <resource> <targetPath>${project.build.directory}/scripts</targetPath> <filtering>true</filtering> <directory>src/main/scripts</directory> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <filtering>true</filtering> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-help-plugin</artifactId> <version>3.5.1</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>${java.compiler.version}</source> <target>${java.compiler.version}</target> <encoding>UTF-8</encoding> <optimize>true</optimize> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <compilerArgument>-Xlint:all,-serial,-path,-rawtypes,-unchecked</compilerArgument> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <configuration> <rules> <requireJavaVersion> <version>${java.compiler.version}</version> </requireJavaVersion> </rules> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <artifactId>maven-scm-plugin</artifactId> <version>2.1.0</version> <configuration> <message>[maven-release-plugin] prepare release v${project.version}</message> <pushChanges>false</pushChanges> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <preparationGoals>clean process-resources scm:checkin</preparationGoals> <pushChanges>false</pushChanges> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <finalName>injector-${project.version}</finalName> <transformers> <transformer> <mainClass>fr.pilato.elasticsearch.injector.runner.Generate</mainClass> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> </transformer> <transformer /> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> <executions> <execution> <id>unit-tests</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <inherited>true</inherited> <configuration> <includes> <include>**/*Test.class</include> </includes> <excludes> <exclude>**/*$*</exclude> </excludes> </configuration> </execution> <execution> <id>integration-tests</id> <phase>integration-test</phase> <goals> <goal>test</goal> </goals> <inherited>true</inherited> <configuration> <includes> <include>**/*IT.class</include> </includes> <excludes> <exclude>**/*$*</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.16</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.11.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>opentest4j</artifactId> <groupId>org.opentest4j</groupId> </exclusion> <exclusion> <artifactId>junit-platform-commons</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.11.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>elasticsearch</artifactId> <version>1.20.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>testcontainers</artifactId> <groupId>org.testcontainers</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <injector.stable.name>injector-${injector.stable.version}</injector.stable.name> <integ.elasticsearch.port>9200</integ.elasticsearch.port> <jackson.version>2.18.2</jackson.version> <tests.cluster.user>elastic</tests.cluster.user> <elasticsearch.version>8.16.1</elasticsearch.version> <java.compiler.version>17</java.compiler.version> <slf4j.version>2.0.16</slf4j.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <injector.stable.version>8.15</injector.stable.version> <log4j.version>2.24.2</log4j.version> <junit.version>5.11.3</junit.version> <contrib.dir>${project.basedir}/contrib</contrib.dir> <integ.elasticsearch.version>${elasticsearch.version}</integ.elasticsearch.version> <tests.cluster.pass>changeme</tests.cluster.pass> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <integ.elasticsearch.image>docker.elastic.co/elasticsearch/elasticsearch</integ.elasticsearch.image> </properties> </project>