spring-batch-bulk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.klee-contrib</groupId>
<artifactId>spring-batch-bulk</artifactId>
<version>0.0.7</version>
</dependency><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> <groupId>io.github.klee-contrib</groupId> <artifactId>spring-batch-bulk</artifactId> <version>0.0.7</version> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.2.0</version> </parent> <scm> <connection>scm:git:git://github.com/klee-contrib/spring-batch-bulk.git</connection> <developerConnection> scm:git:ssh://github.com:klee-contrib/spring-batch-bulk.git </developerConnection> <url>https://github.com/klee-contrib/spring-batch-bulk</url> </scm> <licenses> <license> <name>MIT License</name> <url> https://github.com/klee-contrib/spring-batch-bulk/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>gideruette</id> <name>Gildéric Deruette</name> <url>https://www.linkedin.com/in/gild%C3%A9ric-deruette-89b4b792/</url> <organization>Klee</organization> <roles> <role>tech lead</role> </roles> <timezone>France</timezone> </developer> </developers> <name>spring-batch-bulk</name> <description> Librairie permettant de gérer des insertions en bulk dans spring batch </description> <dependencies> <!-- Spring... --> <dependency> <groupId>org.springframework.batch</groupId> <artifactId>spring-batch-core</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jdbc</artifactId> </dependency> <!-- Librairie de bulk insert... --> <dependency> <groupId>de.bytefish</groupId> <artifactId>pgbulkinsert</artifactId> <version>8.1.0</version> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url> https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-source</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>