Skip to content

Commit b93e6e6

Browse files
author
jantje
committed
Renaming the managedBuild folders to autoBuild #1126
Also got the pom build running but fails as Sloeber tests fail (as expected as work is not done yet)
1 parent 0847191 commit b93e6e6

File tree

255 files changed

+23202
-23153
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+23202
-23153
lines changed
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
Manifest-Version: 1.0
2-
Bundle-ManifestVersion: 2
3-
Bundle-Name: Test
4-
Bundle-SymbolicName: io.sloeber.autoBuild.test
5-
Bundle-Version: 1.0.0.qualifier
6-
Require-Bundle: org.eclipse.cdt.core;bundle-version="7.4.200",
7-
io.sloeber.autoBuild;bundle-version="4.4.1",
8-
org.eclipse.equinox.registry,
9-
org.eclipse.core.resources,
10-
org.eclipse.osgi,
11-
org.eclipse.core.jobs,
12-
org.eclipse.swt,
13-
org.eclipse.core.runtime;bundle-version="3.26.100",
14-
junit-jupiter-api;bundle-version="5.9.1",
15-
org.junit,
16-
junit-jupiter-params;bundle-version="5.9.1",
17-
org.eclipse.cdt.core.native
18-
Automatic-Module-Name: io.sloeber.autoBuild.test
19-
Bundle-RequiredExecutionEnvironment: JavaSE-17
1+
Manifest-Version: 1.0
2+
Bundle-ManifestVersion: 2
3+
Bundle-Name: Test
4+
Bundle-SymbolicName: io.sloeber.autoBuild.test
5+
Bundle-Version: 4.4.2.qualifier
6+
Require-Bundle: org.eclipse.cdt.core;bundle-version="7.4.200",
7+
org.eclipse.equinox.registry,
8+
org.eclipse.core.resources,
9+
org.eclipse.osgi,
10+
org.eclipse.core.jobs,
11+
org.eclipse.swt,
12+
org.eclipse.core.runtime,
13+
junit-jupiter-api,
14+
org.junit,
15+
junit-jupiter-params,
16+
org.eclipse.cdt.core.native,
17+
io.sloeber.autoBuild
18+
Automatic-Module-Name: io.sloeber.autoBuild.test
19+
Bundle-RequiredExecutionEnvironment: JavaSE-17

io.sloeber.autoBuild.test/pom.xml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>io.sloeber.arduino-eclipse-plugin</groupId>
6+
<artifactId>io.sloeber.parent</artifactId>
7+
<version>4.4.2-SNAPSHOT</version>
8+
<relativePath>../io.sloeber.parent</relativePath>
9+
</parent>
10+
11+
<artifactId>io.sloeber.autoBuild.test</artifactId>
12+
<packaging>eclipse-test-plugin</packaging>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>junit</groupId>
17+
<artifactId>junit</artifactId>
18+
<version>4.13.1</version>
19+
<scope>test</scope>
20+
</dependency>
21+
</dependencies>
22+
23+
<build>
24+
<plugins>
25+
<plugin>
26+
<groupId>org.eclipse.tycho</groupId>
27+
<artifactId>tycho-surefire-plugin</artifactId>
28+
<version>${tycho.version}</version>
29+
<configuration>
30+
<systemProperties>
31+
<org.eclipse.cdt.core.console>org.eclipse.cdt.core.systemConsole</org.eclipse.cdt.core.console>
32+
</systemProperties>
33+
</configuration>
34+
</plugin>
35+
</plugins>
36+
</build>
37+
</project>
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="src" path="src"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
5-
<attributes>
6-
<attribute name="module" value="true"/>
7-
</attributes>
8-
</classpathentry>
9-
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
10-
<classpathentry kind="output" path="bin"/>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
5+
<attributes>
6+
<attribute name="module" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
10+
<classpathentry kind="output" path="bin"/>
1111
</classpath>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/bin/
2-
/target/
1+
/bin/
2+
/target/

io.sloeber.ManagedBuild.ui/.project renamed to io.sloeber.autoBuild.ui/.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
<nature>org.eclipse.pde.PluginNature</nature>
3232
<nature>org.eclipse.jdt.core.javanature</nature>
3333
</natures>
34-
</projectDescription>
34+
</projectDescription>
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
Manifest-Version: 1.0
2-
Bundle-ManifestVersion: 2
3-
Bundle-Name: Sloeber auto build user interface
4-
Bundle-SymbolicName: io.sloeber.autoBuild.ui;singleton:=true
5-
Bundle-Version: 4.4.1.qualifier
6-
Require-Bundle: org.eclipse.tools.templates.ui,
7-
org.eclipse.osgi,
8-
org.eclipse.cdt.core;bundle-version="7.4.200",
9-
org.eclipse.core.runtime;bundle-version="3.26.0",
10-
org.eclipse.swt;bundle-version="3.121.0",
11-
org.eclipse.jface;bundle-version="3.27.0",
12-
org.eclipse.ui;bundle-version="3.201.100",
13-
org.eclipse.ui.ide;bundle-version="3.19.100",
14-
org.eclipse.tools.templates.freemarker;bundle-version="1.2.300",
15-
org.eclipse.core.resources,
16-
org.eclipse.cdt.ui,
17-
org.eclipse.core.filesystem,
18-
io.sloeber.autoBuild;bundle-version="4.4.1"
19-
Bundle-RequiredExecutionEnvironment: JavaSE-17
20-
Bundle-Vendor: Sloeber.io
21-
Bundle-ActivationPolicy: lazy
22-
Bundle-Activator: io.sloeber.autoBuild.ui.internal.Activator
23-
Automatic-Module-Name: io.sloeber.core
1+
Manifest-Version: 1.0
2+
Bundle-ManifestVersion: 2
3+
Bundle-Name: Sloeber auto build user interface
4+
Bundle-SymbolicName: io.sloeber.autoBuild.ui;singleton:=true
5+
Bundle-Version: 4.4.2.qualifier
6+
Require-Bundle: org.eclipse.tools.templates.ui,
7+
org.eclipse.osgi,
8+
org.eclipse.cdt.core;bundle-version="7.4.200",
9+
org.eclipse.core.runtime;bundle-version="3.26.0",
10+
org.eclipse.swt;bundle-version="3.121.0",
11+
org.eclipse.jface;bundle-version="3.27.0",
12+
org.eclipse.ui;bundle-version="3.201.100",
13+
org.eclipse.ui.ide;bundle-version="3.19.100",
14+
org.eclipse.tools.templates.freemarker;bundle-version="1.2.300",
15+
org.eclipse.core.resources,
16+
org.eclipse.cdt.ui,
17+
org.eclipse.core.filesystem,
18+
io.sloeber.autoBuild;bundle-version="4.4.1"
19+
Bundle-RequiredExecutionEnvironment: JavaSE-17
20+
Bundle-Vendor: Sloeber.io
21+
Bundle-ActivationPolicy: lazy
22+
Bundle-Activator: io.sloeber.autoBuild.ui.internal.Activator
23+
Automatic-Module-Name: io.sloeber.core
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
page.c.build=C/C++ Build
2-
CDTVariablesProperty.name=Build Variables
3-
Environment=Environment
4-
Builder.settings=Builder Settings
5-
WBB.settings=Behavior
6-
Refresh.policy=Refresh Policy
7-
EnvironmentTab.name = (Single) Environment
8-
CPropertyVarsTab.name = (Single) CDT Vars (macros)
9-
CDTBuildProperty.name=Settings
10-
ProjectSettingsTab.name=Project Settings
11-
CDTProjectProperty.name=Project Settings
12-
13-
Tool.settings=Tool Settings
14-
Build.steps=Build Steps
15-
Binary.parsers=Binary Parsers
1+
page.c.build=C/C++ Build
2+
CDTVariablesProperty.name=Build Variables
3+
Environment=Environment
4+
Builder.settings=Builder Settings
5+
WBB.settings=Behavior
6+
Refresh.policy=Refresh Policy
7+
EnvironmentTab.name = (Single) Environment
8+
CPropertyVarsTab.name = (Single) CDT Vars (macros)
9+
CDTBuildProperty.name=Settings
10+
ProjectSettingsTab.name=Project Settings
11+
CDTProjectProperty.name=Project Settings
12+
13+
Tool.settings=Tool Settings
14+
Build.steps=Build Steps
15+
Binary.parsers=Binary Parsers
1616
Error.parsers=Error Parsers
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source.. = src/
2+
output.. = bin/
3+
bin.includes = .,\
4+
plugin.xml,\
5+
plugin.properties,\
6+
META-INF/,\
7+
OSGI-INF/,\
8+
OSGI-INF/l10n/bundle.properties
9+
jars.compile.order = .
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pluginName=Arduino Eclipse Plugin named Sloeber
2-
providerName=Jan Baeyens
1+
pluginName=Arduino Eclipse Plugin named Sloeber
2+
providerName=Jan Baeyens

0 commit comments

Comments
 (0)