Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
934eeb2
initial
TruongQuangSB Apr 21, 2026
96605cc
transformation test
TruongQuangSB Apr 22, 2026
f0394bf
Test Pt1 Table transformator
TruongQuangSB Apr 22, 2026
3c4dc24
Merge branch 'main' into rendere-table-unit-test
TruongQuangSB Apr 24, 2026
6375682
Add test sorting table
TruongQuangSB Apr 27, 2026
4d319ca
add commonet
TruongQuangSB Apr 27, 2026
133f699
Merge branch 'main' into rendere-table-unit-test
TruongQuangSB Apr 28, 2026
6755f5c
Merge branch 'main' into rendere-table-unit-test
TruongQuangSB Apr 30, 2026
4a396a0
format
TruongQuangSB Apr 30, 2026
6d4dc3e
Merge branch 'main' into rendere-table-unit-test
TruongQuangSB May 4, 2026
b2e7e86
initial
TruongQuangSB May 5, 2026
aec3782
Merge branch 'main' into table-pdf-export-test
TruongQuangSB May 6, 2026
2401327
Add namespace by create XSL
TruongQuangSB May 7, 2026
9ff9030
Update test
TruongQuangSB May 7, 2026
1430c20
Merge branch 'table-pdf-export-test' of https://github.com/eclipse-se…
TruongQuangSB May 7, 2026
4cf6d7e
fix
TruongQuangSB May 7, 2026
5b4699f
Fix wrong pdf style
TruongQuangSB May 7, 2026
92c68c0
add custom node comparator
TruongQuangSB May 8, 2026
cb09b7d
Merge branch 'main' into table-pdf-export-test
TruongQuangSB May 8, 2026
fb629b6
Fix Mockito warning
TruongQuangSB May 8, 2026
6e25048
Update SWTBot.launch
TruongQuangSB May 8, 2026
b138447
Update MANIFEST.MF
TruongQuangSB May 8, 2026
dddd1a6
Update org.eclipse.set.releng.target.target
TruongQuangSB May 8, 2026
0ec570e
fix compile
TruongQuangSB May 8, 2026
5085d84
Update MANIFEST.MF
TruongQuangSB May 8, 2026
51d3dfe
add MockModelSession class
TruongQuangSB May 8, 2026
0579982
Merge branch 'main' into table-pdf-export-test
TruongQuangSB May 8, 2026
480d1a3
fix missing methode
TruongQuangSB May 8, 2026
208374d
Fix
TruongQuangSB May 8, 2026
ba1b49c
Update xsl res
TruongQuangSB May 12, 2026
5f4999c
Update custom comparator
TruongQuangSB May 12, 2026
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
40 changes: 40 additions & 0 deletions java/bundles/org.eclipse.set.application.test/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>org.eclipse.set.application.test</artifactId>
<packaging>eclipse-test-plugin</packaging>

<parent>
<relativePath>../../</relativePath>
<groupId>org.eclipse.set</groupId>
<artifactId>org.eclipse.set.releng.parent</artifactId>
<version>2.6.0-SNAPSHOT</version>
</parent>
<build>
<!-- Use mockito as java agent
https://javadoc.io/doc/org.mockito/mockito-core/latest/org.mockito/org/mockito/Mockito.html#0.3 -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>properties</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
40 changes: 40 additions & 0 deletions java/bundles/org.eclipse.set.core.test/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>org.eclipse.set.core.test</artifactId>
<packaging>eclipse-test-plugin</packaging>

<parent>
<relativePath>../../</relativePath>
<groupId>org.eclipse.set</groupId>
<artifactId>org.eclipse.set.releng.parent</artifactId>
<version>2.6.0-SNAPSHOT</version>
</parent>
<build>
<!-- Use mockito as java agent
https://javadoc.io/doc/org.mockito/mockito-core/latest/org.mockito/org/mockito/Mockito.html#0.3 -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>properties</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
38 changes: 38 additions & 0 deletions java/bundles/org.eclipse.set.feature.plazmodel.test/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>org.eclipse.set.feature.plazmodel.test</artifactId>
<packaging>eclipse-test-plugin</packaging>

<parent>
<relativePath>../../</relativePath>
<groupId>org.eclipse.set</groupId>
<artifactId>org.eclipse.set.releng.parent</artifactId>
<version>2.6.0-SNAPSHOT</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>properties</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
40 changes: 40 additions & 0 deletions java/bundles/org.eclipse.set.feature.siteplan.test/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>org.eclipse.set.feature.siteplan.test</artifactId>
<packaging>eclipse-test-plugin</packaging>

<parent>
<relativePath>../../</relativePath>
<groupId>org.eclipse.set</groupId>
<artifactId>org.eclipse.set.releng.parent</artifactId>
<version>2.6.0-SNAPSHOT</version>
</parent>
<build>
<!-- Use mockito as java agent
https://javadoc.io/doc/org.mockito/mockito-core/latest/org.mockito/org/mockito/Mockito.html#0.3 -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>properties</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Bundle-Name: Pt1 Table Test
Bundle-SymbolicName: org.eclipse.set.feature.table.pt1.test
Bundle-Vendor: Eclipse Signalling Engineering Toolbox
Bundle-Version: 2.6.0.qualifier
Fragment-Host: org.eclipse.set.feature.table.pt1;bundle-version="0.1.0"
Automatic-Module-Name: org.eclipse.set.feature.table.pt1.test
Bundle-Activator: org.eclipse.set.feature.table.pt1.test.Activator
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-21
Import-Package: com.google.common.util.concurrent,
Expand All @@ -15,16 +15,41 @@ Import-Package: com.google.common.util.concurrent,
org.apache.commons.collections4,
org.apache.commons.lang3,
org.apache.commons.lang3.reflect,
org.dom4j,
org.dom4j.io,
org.dom4j.util,
org.eclipse.e4.core.services.events,
org.eclipse.emf.edit.domain;version="[2.23.0,3.0.0)",
org.eclipse.set.application.cacheservice,
org.eclipse.set.application.geometry,
org.eclipse.set.application.graph,
org.eclipse.set.core,
org.eclipse.set.core.services.cache,
org.eclipse.set.core.services.enumtranslation,
org.eclipse.set.core.services.geometry,
org.eclipse.set.model.tablemodel,
org.eclipse.set.model.temporaryintegration,
org.eclipse.set.ppmodel.extensions.container,
org.eclipse.set.ppmodel.extensions.utils,
org.eclipse.set.unittest.utils,
org.eclipse.set.utils,
org.eclipse.set.utils.export.xsl,
org.eclipse.set.utils.table,
org.eclipse.swt.widgets,
org.jgrapht.graph,
org.jheaps.tree,
org.junit.jupiter.api,
org.junit.jupiter.api.extension;version="[5.12.0,6.0.0)",
org.junit.jupiter.api.function,
org.junit.jupiter.params,
org.junit.jupiter.params.provider
Require-Bundle: org.mockito.mockito-core
org.junit.jupiter.params.provider,
org.osgi.framework,
org.osgi.service.event,
org.osgi.test.common.annotation,
org.osgi.test.junit5.service;version="[1.2.0,2.0.0)"
Require-Bundle: org.mockito.mockito-core,
org.eclipse.set.feature.table,
org.eclipse.set.feature.table.pt1,
org.eclipse.set.model.planpro,
org.eclipse.set.ppmodel.extensions,
org.eclipse.set.basis
35 changes: 9 additions & 26 deletions java/bundles/org.eclipse.set.feature.table.pt1.test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>

<groupId>org.eclipse.set</groupId>
<artifactId>org.eclipse.set.feature.table.pt1.test</artifactId>
<version>2.6.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>

<parent>
Expand All @@ -15,41 +12,27 @@
<artifactId>org.eclipse.set.releng.parent</artifactId>
<version>2.6.0-SNAPSHOT</version>
</parent>

<build>
<!-- Use mockito as java agent
https://javadoc.io/doc/org.mockito/mockito-core/latest/org.mockito/org/mockito/Mockito.html#0.3 -->
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.5.0</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-news</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
<goal>properties</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/data/export/excel</outputDirectory>
<resources>
<resource>
<directory>${basedir}/../org.eclipse.set.feature/rootdir/data/export/excel</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.5.0</version>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<filesets>
<fileset>
<directory>data</directory>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
</configuration>
</plugin>
</plugins>
Expand Down

Large diffs are not rendered by default.

Loading
Loading