Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move core batch package to new Batch module (#5767) #5783

Merged
merged 3 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions batch/.checkstyle
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>

<fileset-config file-format-version="1.2.0" simple-config="false" sync-formatter="false">
<local-check-config name="Frank!Framework" location="/iaf/checkstyle.xml" type="project" description="">
<additional-data name="protect-config-file" value="false"/>
</local-check-config>
<fileset name="all" enabled="true" check-config-name="Frank!Framework" local="true">
<file-match-pattern match-pattern="." include-pattern="true"/>
</fileset>
</fileset-config>
37 changes: 37 additions & 0 deletions batch/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>org.ibissource</groupId>
<artifactId>ibis-adapterframework-parent</artifactId>
<version>${revision}</version>
</parent>

<artifactId>ibis-adapterframework-batch</artifactId>
<name>Ibis AdapterFramework support for Batch processing</name>

<dependencies>
<dependency>
<groupId>org.ibissource</groupId>
<artifactId>ibis-adapterframework-core</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

import nl.nn.adapterframework.batch.IResultHandler;
import nl.nn.adapterframework.core.SenderException;
import nl.nn.adapterframework.doc.ReferTo;
import nl.nn.adapterframework.dbms.IDbmsSupport;
import nl.nn.adapterframework.doc.ReferTo;
import nl.nn.adapterframework.util.JdbcUtil;


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
import nl.nn.adapterframework.configuration.ConfigurationException;
import nl.nn.adapterframework.core.PipeLineSession;
import nl.nn.adapterframework.core.SenderException;
import nl.nn.adapterframework.doc.ReferTo;
import nl.nn.adapterframework.dbms.IDbmsSupport;
import nl.nn.adapterframework.doc.ReferTo;
import nl.nn.adapterframework.stream.Message;
import nl.nn.adapterframework.util.JdbcUtil;
import nl.nn.adapterframework.util.SpringUtils;
Expand Down
6 changes: 5 additions & 1 deletion bundle-full/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
<groupId>org.ibissource</groupId>
<artifactId>nn-specials</artifactId>
</dependency>
<dependency>
<groupId>org.ibissource</groupId>
<artifactId>ibis-adapterframework-batch</artifactId>
</dependency>
</dependencies>

<profiles>
Expand Down Expand Up @@ -65,4 +69,4 @@
</dependencies>
</profile>
</profiles>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ private void lookupApplicationModules() {
modulesToScanFor.add("ibis-adapterframework-akamai");
modulesToScanFor.add("ibis-adapterframework-aspose");
modulesToScanFor.add("ibis-adapterframework-aws");
modulesToScanFor.add("ibis-adapterframework-batch");
modulesToScanFor.add("ibis-adapterframework-cmis");
modulesToScanFor.add("ibis-adapterframework-commons");
modulesToScanFor.add("ibis-adapterframework-console-backend");
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,11 @@
<artifactId>nn-specials</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ibissource</groupId>
<artifactId>ibis-adapterframework-batch</artifactId>
<version>${project.version}</version>
</dependency>


<dependency>
Expand Down Expand Up @@ -1214,6 +1219,7 @@

<module>akamai</module>
<module>aws</module>
<module>batch</module>
jkosternl marked this conversation as resolved.
Show resolved Hide resolved
<module>cmis</module>
<module>aspose</module>
<module>nn-specials</module>
Expand Down
Loading