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 Dec 18, 2024
1 parent ab9ec17 commit 6fd711d
Show file tree
Hide file tree
Showing 21 changed files with 135 additions and 132 deletions.
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 @@ -78,7 +78,8 @@ private static class AvroRecordBuilderFactory extends RecordBuilderFactoryImpl
private AvroRecordBuilderFactory(final String plugin) {
super(plugin);
if (Boolean.getBoolean(SKIP_SANITIZE_PROPERTY)) {
throw new RuntimeException("component-runtime-beam environment needs `" + SKIP_SANITIZE_PROPERTY + "` property to be false.");
throw new RuntimeException("component-runtime-beam environment needs `" + SKIP_SANITIZE_PROPERTY
+ "` property to be false.");
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
/*
/**
* Copyright (C) 2006-2024 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. You may obtain a copy of the License at
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.talend.sdk.component.runtime.record;

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
Original file line number Diff line number Diff line change
Expand Up @@ -226,20 +226,20 @@ public void endElement(final String uri, final String localName, final String qN
}
} else if (server != null && current != null) {
switch (qName) {
case "id":
server.setId(current.toString());
break;
case "username":
try {
server.setUsername(doDecrypt(current.toString(), passphrase));
} catch (final RuntimeException re) {
server.setUsername(current.toString());
}
break;
case "password":
encryptedPassword = current.toString();
break;
default:
case "id":
server.setId(current.toString());
break;
case "username":
try {
server.setUsername(doDecrypt(current.toString(), passphrase));
} catch (final RuntimeException re) {
server.setUsername(current.toString());
}
break;
case "password":
encryptedPassword = current.toString();
break;
default:
}
current = null;
}
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
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
2 changes: 1 addition & 1 deletion component-starter-server/src/main/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
"overrides": {
"webpack": "^5.92.0"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -467,13 +467,13 @@ void testConflictingSubRecord() {
void arrayWithRecords() {
final Record record = factory.newRecordBuilder()
.withArray(factory.newEntryBuilder()
.withName("field")
.withType(Type.ARRAY)
.withElementSchema(factory.newSchemaBuilder(Type.RECORD)
.withEntry(factory.newEntryBuilder().withName("id").withType(Type.DOUBLE).build())
.withEntry(factory.newEntryBuilder().withName("name").withType(Type.STRING).build())
.build())
.build(),
.withName("field")
.withType(Type.ARRAY)
.withElementSchema(factory.newSchemaBuilder(Type.RECORD)
.withEntry(factory.newEntryBuilder().withName("id").withType(Type.DOUBLE).build())
.withEntry(factory.newEntryBuilder().withName("name").withType(Type.STRING).build())
.build())
.build(),
Arrays.asList(
factory.newRecordBuilder().withDouble("id", 1.0).withString("name", "paddle").build(),
factory.newRecordBuilder().withDouble("id", 2.0).withString("name", "pickle").build(),
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
2 changes: 1 addition & 1 deletion component-tools-webapp/src/main/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
"cross-env": "^7.0.3",
"webpack": "5.92.1"
}
}
}
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.66.0'
version: '1.67.0'
nav:
- modules/ROOT/nav.adoc

Large diffs are not rendered by default.

Loading

0 comments on commit 6fd711d

Please sign in to comment.