-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2977 from HannesWell/renormalize-lineendings
Re-normalize line-endings in git of all files to Linux style ("\n")
- Loading branch information
Showing
47 changed files
with
3,101 additions
and
3,101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 17 additions & 17 deletions
34
org.eclipse.xtend.examples/projects/xtend-annotation-examples-client/META-INF/MANIFEST.MF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: Active Annotations Example Client | ||
Bundle-SymbolicName: xtend-annotation-examples-client | ||
Bundle-Version: 2.35.0.qualifier | ||
Bundle-RequiredExecutionEnvironment: JavaSE-11 | ||
Require-Bundle: org.eclipse.xtend.lib, | ||
com.google.guava;bundle-version="[33.1.0,34.0.0)", | ||
org.eclipse.xtext.xbase.lib;bundle-version="2.35.0", | ||
xtend-annotation-examples;bundle-version="2.4.3" | ||
Bundle-Vendor: Eclipse Xtext | ||
Automatic-Module-Name: xtend-annotation-examples-client | ||
Export-Package: extract;x-internal:=true, | ||
i18n;x-internal:=true, | ||
lazy;x-internal:=true, | ||
observables;x-internal:=true | ||
|
||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: Active Annotations Example Client | ||
Bundle-SymbolicName: xtend-annotation-examples-client | ||
Bundle-Version: 2.35.0.qualifier | ||
Bundle-RequiredExecutionEnvironment: JavaSE-11 | ||
Require-Bundle: org.eclipse.xtend.lib, | ||
com.google.guava;bundle-version="[33.1.0,34.0.0)", | ||
org.eclipse.xtext.xbase.lib;bundle-version="2.35.0", | ||
xtend-annotation-examples;bundle-version="2.4.3" | ||
Bundle-Vendor: Eclipse Xtext | ||
Automatic-Module-Name: xtend-annotation-examples-client | ||
Export-Package: extract;x-internal:=true, | ||
i18n;x-internal:=true, | ||
lazy;x-internal:=true, | ||
observables;x-internal:=true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
source.. = src | ||
bin.includes = META-INF/,\ | ||
.,\ | ||
lifecycle-mapping-metadata.xml,\ | ||
plugin.xml,\ | ||
plugin.properties,\ | ||
about.html, | ||
src.includes = about.html | ||
source.. = src | ||
bin.includes = META-INF/,\ | ||
.,\ | ||
lifecycle-mapping-metadata.xml,\ | ||
plugin.xml,\ | ||
plugin.properties,\ | ||
about.html, | ||
src.includes = about.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<lifecycleMappingMetadata> | ||
<pluginExecutions> | ||
<pluginExecution> | ||
<pluginExecutionFilter> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>xtend-maven-plugin</artifactId> | ||
<versionRange>[2.2.0,)</versionRange> | ||
<goals> | ||
<goal>compile</goal> | ||
<goal>testCompile</goal> | ||
</goals> | ||
</pluginExecutionFilter> | ||
<action> | ||
<configurator> | ||
<id>org.eclipse.xtend.m2e.xtendConfigurator</id> | ||
</configurator> | ||
</action> | ||
</pluginExecution> | ||
</pluginExecutions> | ||
<lifecycleMappingMetadata> | ||
<pluginExecutions> | ||
<pluginExecution> | ||
<pluginExecutionFilter> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>xtend-maven-plugin</artifactId> | ||
<versionRange>[2.2.0,)</versionRange> | ||
<goals> | ||
<goal>compile</goal> | ||
<goal>testCompile</goal> | ||
</goals> | ||
</pluginExecutionFilter> | ||
<action> | ||
<configurator> | ||
<id>org.eclipse.xtend.m2e.xtendConfigurator</id> | ||
</configurator> | ||
</action> | ||
</pluginExecution> | ||
</pluginExecutions> | ||
</lifecycleMappingMetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?eclipse version="3.4"?> | ||
<plugin> | ||
<extension | ||
point="org.eclipse.m2e.core.lifecycleMappingMetadataSource"> | ||
</extension> | ||
<extension | ||
point="org.eclipse.m2e.core.projectConfigurators"> | ||
<configurator | ||
class="org.eclipse.xtend.m2e.XtendProjectConfigurator" | ||
id="org.eclipse.xtend.m2e.xtendConfigurator" | ||
name="Xtend Project Configurator"> | ||
</configurator> | ||
</extension> | ||
|
||
</plugin> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?eclipse version="3.4"?> | ||
<plugin> | ||
<extension | ||
point="org.eclipse.m2e.core.lifecycleMappingMetadataSource"> | ||
</extension> | ||
<extension | ||
point="org.eclipse.m2e.core.projectConfigurators"> | ||
<configurator | ||
class="org.eclipse.xtend.m2e.XtendProjectConfigurator" | ||
id="org.eclipse.xtend.m2e.xtendConfigurator" | ||
name="Xtend Project Configurator"> | ||
</configurator> | ||
</extension> | ||
|
||
</plugin> |
134 changes: 67 additions & 67 deletions
134
org.eclipse.xtend.maven.archetype/src/main/resources/archetype-resources/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,67 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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> | ||
<groupId>\${groupId}</groupId> | ||
<artifactId>\${artifactId}</artifactId> | ||
<version>\${version}</version> | ||
<name>xtend-quickstart</name> | ||
<properties> | ||
<xtend.version>${project.version}</xtend.version> | ||
<project.build.sourceEncoding>${sourceEncoding}</project.build.sourceEncoding> | ||
<maven.compiler.source>${javaVersion}</maven.compiler.source> | ||
<maven.compiler.target>${javaVersion}</maven.compiler.target> | ||
</properties> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.xtext</groupId> | ||
<artifactId>xtext-dev-bom</artifactId> | ||
<version>${xtend.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>xtend-maven-plugin</artifactId> | ||
<version>${xtend.version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>compile</goal> | ||
<goal>testCompile</goal> | ||
<goal>xtend-install-debug-info</goal> | ||
<goal>xtend-test-install-debug-info</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<outputDirectory>\${project.build.directory}/xtend-gen/main</outputDirectory> | ||
<testOutputDirectory>\${project.build.directory}/xtend-gen/test</testOutputDirectory> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>org.eclipse.xtend.lib</artifactId> | ||
<version>${xtend.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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> | ||
<groupId>\${groupId}</groupId> | ||
<artifactId>\${artifactId}</artifactId> | ||
<version>\${version}</version> | ||
<name>xtend-quickstart</name> | ||
<properties> | ||
<xtend.version>${project.version}</xtend.version> | ||
<project.build.sourceEncoding>${sourceEncoding}</project.build.sourceEncoding> | ||
<maven.compiler.source>${javaVersion}</maven.compiler.source> | ||
<maven.compiler.target>${javaVersion}</maven.compiler.target> | ||
</properties> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.xtext</groupId> | ||
<artifactId>xtext-dev-bom</artifactId> | ||
<version>${xtend.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>xtend-maven-plugin</artifactId> | ||
<version>${xtend.version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>compile</goal> | ||
<goal>testCompile</goal> | ||
<goal>xtend-install-debug-info</goal> | ||
<goal>xtend-test-install-debug-info</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<outputDirectory>\${project.build.directory}/xtend-gen/main</outputDirectory> | ||
<testOutputDirectory>\${project.build.directory}/xtend-gen/test</testOutputDirectory> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>org.eclipse.xtend.lib</artifactId> | ||
<version>${xtend.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
20 changes: 10 additions & 10 deletions
20
...end.maven.archetype/src/main/resources/archetype-resources/src/main/java/HelloXtend.xtend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package ${package} | ||
|
||
class HelloXtend { | ||
|
||
def static void main(String[] args) { | ||
println(message) | ||
} | ||
|
||
def static getMessage () '''Hello Xtend!''' | ||
|
||
package ${package} | ||
|
||
class HelloXtend { | ||
|
||
def static void main(String[] args) { | ||
println(message) | ||
} | ||
|
||
def static getMessage () '''Hello Xtend!''' | ||
|
||
} |
46 changes: 23 additions & 23 deletions
46
org.eclipse.xtend.maven.plugin/src/test/resources/it/compile/encoding/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
<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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>it-tests-parent</artifactId> | ||
<version>IT-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>simple</artifactId> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-16</project.build.sourceEncoding> | ||
</properties> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>xtend-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
<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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>it-tests-parent</artifactId> | ||
<version>IT-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>simple</artifactId> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-16</project.build.sourceEncoding> | ||
</properties> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>xtend-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.