Skip to content

Commit

Permalink
Updating doc for next iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins-git committed Jan 16, 2025
1 parent 427c58b commit 94e54b3
Show file tree
Hide file tree
Showing 24 changed files with 119 additions and 112 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2006-2024 Talend Inc. - www.talend.com
* Copyright (C) 2006-2025 Talend Inc. - www.talend.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion component-runtime-beam/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
<configuration>
<target>
<!-- TCOMP-1983 -->
<replaceregexp byline="true" file="${project.build.outputDirectory}/TALEND-INF/beam.dependencies" match="(\u001B\[36m)?\s+--\s+module\s+.*$" replace="" />
<replaceregexp byline="true" file="${project.build.outputDirectory}/TALEND-INF/beam.dependencies" match="(\u001B\[36m)?\s+--\s+module\s+.*$" replace=""/>
</target>
</configuration>
</execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ default void afterGroup(OutputFactory output, boolean last) {
afterGroup(output);
}

default boolean isLastGroupUsed() { return false; }
default boolean isLastGroupUsed() {
return false;
}

void onNext(InputFactory input, OutputFactory output);
}
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ void bulkGroup() {

@Test
void bulkGroupWithLastGroup() {
final Processor processor = new ProcessorImpl("Root", "Test", "Plugin", emptyMap(), new SampleLastGroupOutput());
final Processor processor =
new ProcessorImpl("Root", "Test", "Plugin", emptyMap(), new SampleLastGroupOutput());
processor.start();
processor.beforeGroup();
assertTrue(processor.isLastGroupUsed());
Expand Down Expand Up @@ -204,7 +205,8 @@ public static class Sample {
private int data;
}

public static class SampleLastGroupOutput implements Serializable {
public static class SampleLastGroupOutput implements Serializable {

private static boolean isCalled = false;

@ElementListener
Expand Down
2 changes: 1 addition & 1 deletion component-runtime-manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
<configuration>
<target>
<!-- TCOMP-1983 -->
<replaceregexp byline="true" file="${project.build.outputDirectory}/TALEND-INF/manager.dependencies" match="(\u001B\[36m)?\s+--\s+module\s+.*$" replace="" />
<replaceregexp byline="true" file="${project.build.outputDirectory}/TALEND-INF/manager.dependencies" match="(\u001B\[36m)?\s+--\s+module\s+.*$" replace=""/>
</target>
</configuration>
</execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
<artifactSet>
<includes>
Expand Down
2 changes: 1 addition & 1 deletion component-server-parent/component-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
<configuration>
<target>
<!-- TCOMP-1983 -->
<replaceregexp byline="true" file="${project.build.outputDirectory}/TALEND-INF/server/dependencies.txt" match="(\u001B\[36m)?\s+--\s+module\s+.*$" replace="" />
<replaceregexp byline="true" file="${project.build.outputDirectory}/TALEND-INF/server/dependencies.txt" match="(\u001B\[36m)?\s+--\s+module\s+.*$" replace=""/>
</target>
</configuration>
</execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ void getFixedSchemaMetadata() {
final ComponentIndex index = components.iterator().next();
assertEquals("jdbc#input", index.getId().getFamily() + "#" + index.getId().getName());
assertEquals("jdbc_discover_schema", index.getMetadata().get(ComponentSchemaEnricher.FIXED_SCHEMA_META_PREFIX));
assertEquals(Branches.DEFAULT_BRANCH, index.getMetadata().get(ComponentSchemaEnricher.FIXED_SCHEMA_FLOWS_META_PREFIX));
assertEquals(Branches.DEFAULT_BRANCH,
index.getMetadata().get(ComponentSchemaEnricher.FIXED_SCHEMA_FLOWS_META_PREFIX));
}

@Test()
Expand Down
2 changes: 1 addition & 1 deletion component-starter-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@
<goals>
<goal>npm</goal>
</goals>
<phase />
<phase/>
<configuration>
<arguments>start</arguments>
<environmentVariables>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2006-2024 Talend Inc. - www.talend.com
* Copyright (C) 2006-2025 Talend Inc. - www.talend.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ private void callCloseComponent(final ComponentManager manager) {
.getServices()
.stream()
.flatMap(c -> c.getActions().stream())
.filter(actionMeta -> "DynamicColumnsTest".equals(actionMeta.getFamily()) && "close_connection".equals(actionMeta.getType()))
.filter(actionMeta -> "DynamicColumnsTest".equals(actionMeta.getFamily())
&& "close_connection".equals(actionMeta.getType()))
.forEach(actionMeta -> {
Object result = actionMeta.getInvoker().apply(null);
CloseConnectionObject cco = (CloseConnectionObject) result;
Expand Down Expand Up @@ -172,7 +173,8 @@ private void callConnectionComponent(final ComponentManager manager) {
.getServices()
.stream()
.flatMap(c -> c.getActions().stream())
.filter(actionMeta -> "DynamicColumnsTest".equals(actionMeta.getFamily()) && "create_connection".equals(actionMeta.getType()))
.filter(actionMeta -> "DynamicColumnsTest".equals(actionMeta.getFamily())
&& "create_connection".equals(actionMeta.getType()))
.forEach(actionMeta -> {
Object connnection = actionMeta.getInvoker().apply(runtimeParams);
assertEquals("v1100connection_1value", connnection);
Expand Down
2 changes: 1 addition & 1 deletion component-tools-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
<goals>
<goal>npm</goal>
</goals>
<phase />
<phase/>
<configuration>
<arguments>run watch</arguments>
<environmentVariables>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2006-2024 Talend Inc. - www.talend.com
* Copyright (C) 2006-2025 Talend Inc. - www.talend.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2006-2024 Talend Inc. - www.talend.com
* Copyright (C) 2006-2025 Talend Inc. - www.talend.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2006-2024 Talend Inc. - www.talend.com
* Copyright (C) 2006-2025 Talend Inc. - www.talend.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
12 changes: 6 additions & 6 deletions documentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@
<goals>
<goal>npm</goal>
</goals>
<phase />
<phase/>
<configuration>
<skip>${component.front.build.skip}</skip>
<arguments>run antora:${antora.dev.site.mode}</arguments>
Expand Down Expand Up @@ -742,11 +742,11 @@
<pdf-style>talend</pdf-style>
<pdf-stylesdir>${project.basedir}/src/main/asciidoctor/pdf/theme</pdf-stylesdir>
<pdf-fonts>${project.build.directory}/build-dependencies/asciidoctorj-pdf/gems/asciidoctor-pdf-${asciidoctor-pdf-gem.version}/data/fonts</pdf-fonts>
<pagenums />
<toc />
<numbered />
<hide-uri-scheme />
<idprefix />
<pagenums/>
<toc/>
<numbered/>
<hide-uri-scheme/>
<idprefix/>
<icons>font</icons>
<icon-set>fa</icon-set>
<idseparator>-</idseparator>
Expand Down
2 changes: 1 addition & 1 deletion documentation/src/main/antora/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# limitations under the License.
name: main
title: Talend Component Kit Developer Reference Guide
version: '1.67.0'
version: '1.68.0'
nav:
- modules/ROOT/nav.adoc

Large diffs are not rendered by default.

Loading

0 comments on commit 94e54b3

Please sign in to comment.