Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Convert line endings from CRLF to LF. #33

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
Convert line endings from CRLF to LF.
  • Loading branch information
johnjohndoe committed Apr 13, 2015
commit 4d2bc966ac7a7b7ee2c4544ae911ae928040880d
110 changes: 55 additions & 55 deletions 52n-sos-importer-bindings/pom.xml
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.n52.sensorweb</groupId>
<artifactId>52n-sos-importer</artifactId>
<version>0.4.0-SNAPSHOT</version>
</parent>
<artifactId>52n-sos-importer-bindings</artifactId>
<name>XMLbeans Module</name>
<description>52North SOS Importer XML Bindings Module</description>
<licenses>
<license>
<name>GNU General Public License v2.0 only</name>
<url>http://www.spdx.org/licenses/GPL-2.0</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<version>2.3.3</version>
<inherited>true</inherited>
<executions>
<execution>
<id>main</id>
<goals>
<goal>xmlbeans</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaDirectory>src/main/resources</schemaDirectory>
<sourceSchemas>
<sourceSchema>import-configuration.xsd</sourceSchema>
</sourceSchemas>
<sourceGenerationDirectory>
target/generated/xmlbeans
</sourceGenerationDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
</dependency>
</dependencies>
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.n52.sensorweb</groupId>
<artifactId>52n-sos-importer</artifactId>
<version>0.4.0-SNAPSHOT</version>
</parent>
<artifactId>52n-sos-importer-bindings</artifactId>
<name>XMLbeans Module</name>
<description>52North SOS Importer XML Bindings Module</description>
<licenses>
<license>
<name>GNU General Public License v2.0 only</name>
<url>http://www.spdx.org/licenses/GPL-2.0</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<version>2.3.3</version>
<inherited>true</inherited>
<executions>
<execution>
<id>main</id>
<goals>
<goal>xmlbeans</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaDirectory>src/main/resources</schemaDirectory>
<sourceSchemas>
<sourceSchema>import-configuration.xsd</sourceSchema>
</sourceSchemas>
<sourceGenerationDirectory>
target/generated/xmlbeans
</sourceGenerationDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -731,8 +731,8 @@
<xs:complexType>
<xs:choice>
<xs:sequence>
<xs:element ref="LocalFile"/>
<xs:element ref="IgnoreLineRegEx" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="LocalFile"/>
<xs:element ref="IgnoreLineRegEx" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:sequence>
<xs:element ref="RemoteFile" />
Expand Down
Loading