Skip to content

Commit

Permalink
Formatted code fixes whitespace thing
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Denzel committed Sep 1, 2020
1 parent b33f6e1 commit 0f24146
Show file tree
Hide file tree
Showing 5 changed files with 1,593 additions and 1,689 deletions.
218 changes: 109 additions & 109 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,121 +1,121 @@
<?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.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>

<groupId>com.badlogicgames.box2dlights</groupId>
<artifactId>box2dlights</artifactId>
<packaging>jar</packaging>
<version>1.6-SNAPSHOT</version>
<groupId>com.badlogicgames.box2dlights</groupId>
<artifactId>box2dlights</artifactId>
<packaging>jar</packaging>
<version>1.6-SNAPSHOT</version>

<name>Box2dlights</name>
<description>2D real-time lighting using box2d</description>
<url>http://github.com/libgdx/box2dlights</url>
<issueManagement>
<url>https://github.com/libgdx/box2dlights/issues</url>
</issueManagement>
<name>Box2dlights</name>
<description>2D real-time lighting using box2d</description>
<url>http://github.com/libgdx/box2dlights</url>
<issueManagement>
<url>https://github.com/libgdx/box2dlights/issues</url>
</issueManagement>

<licenses>
<license>
<name>Apache Licence 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<licenses>
<license>
<name>Apache Licence 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<id>Developers</id>
<url>http://code.google.com/p/libgdx/people/list</url>
</developer>
</developers>
<developers>
<developer>
<id>Developers</id>
<url>http://code.google.com/p/libgdx/people/list</url>
</developer>
</developers>

<scm>
<connection>scm:git:https://github.com/libgdx/box2dlights.git</connection>
<developerConnection>scm:git:https://github.com/libgdx/box2dlights.git</developerConnection>
<url>http://github.com/libgdx/box2dlights</url>
</scm>
<scm>
<connection>scm:git:https://github.com/libgdx/box2dlights.git</connection>
<developerConnection>scm:git:https://github.com/libgdx/box2dlights.git</developerConnection>
<url>http://github.com/libgdx/box2dlights</url>
</scm>

<repositories>
<repository>
<id>gdx-nightlies</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<repositories>
<repository>
<id>gdx-nightlies</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<gdx.version>1.6.2</gdx.version>
</properties>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<gdx.version>1.6.2</gdx.version>
</properties>

<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>generate-resources</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<fork>true</fork>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>generate-resources</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<fork>true</fork>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx</artifactId>
<version>${gdx.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-platform</artifactId>
<classifier>natives-desktop</classifier>
<version>${gdx.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-lwjgl</artifactId>
<version>${gdx.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-box2d</artifactId>
<version>${gdx.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-box2d-platform</artifactId>
<version>${gdx.version}</version>
<classifier>natives-desktop</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx</artifactId>
<version>${gdx.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-platform</artifactId>
<classifier>natives-desktop</classifier>
<version>${gdx.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-lwjgl</artifactId>
<version>${gdx.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-box2d</artifactId>
<version>${gdx.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-box2d-platform</artifactId>
<version>${gdx.version}</version>
<classifier>natives-desktop</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit 0f24146

Please sign in to comment.