Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
graefjk committed Jan 3, 2024
1 parent a748d3d commit 293a204
Show file tree
Hide file tree
Showing 7 changed files with 328 additions and 342 deletions.
52 changes: 25 additions & 27 deletions ICGE-Log/pom.xml
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
<?xml version="1.0" encoding="utf8"?>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-log</artifactId>
<name>ICGE Log</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-log</artifactId>
<name>ICGE Log</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
56 changes: 27 additions & 29 deletions ICGE-ManualStart/pom.xml
Original file line number Diff line number Diff line change
@@ -1,31 +1,29 @@
<?xml version="1.0" encoding="utf8"?>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-manualstart</artifactId>
<name>ICGE Manual Start</name>
<properties>
<icge.version>2.3.8</icge.version>
</properties>
<dependencies>
<dependency>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>ICGE-Simulation</artifactId>
<version>${icge.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-manualstart</artifactId>
<name>ICGE Manual Start</name>
<properties>
<icge.version>2.3.8</icge.version>
</properties>
<dependencies>
<dependency>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge-simulation</artifactId>
<version>${icge.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
80 changes: 39 additions & 41 deletions ICGE-Simulation/pom.xml
Original file line number Diff line number Diff line change
@@ -1,43 +1,41 @@
<?xml version="1.0" encoding="utf8"?>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-simulation</artifactId>
<name>ICGE Simulation</name>
<properties>
<icge.version>2.3.8</icge.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>ICGE-Ui</artifactId>
<version>${icge.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-simulation</artifactId>
<name>ICGE Simulation</name>
<properties>
<icge.version>2.3.8</icge.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge-ui</artifactId>
<version>${icge.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
128 changes: 63 additions & 65 deletions ICGE-Ui/pom.xml
Original file line number Diff line number Diff line change
@@ -1,67 +1,65 @@
<?xml version="1.0" encoding="utf8"?>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-ui</artifactId>
<name>ICGE Ui</name>
<properties>
<icge.version>2.3.8</icge.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>ICGE-Log</artifactId>
<version>${icge.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>noUiTests</id>
<activation>
<property>
<name>noUiTests</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*UiTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-ui</artifactId>
<name>ICGE Ui</name>
<properties>
<icge.version>2.3.8</icge.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge-log</artifactId>
<version>${icge.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>noUiTests</id>
<activation>
<property>
<name>noUiTests</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*UiTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
16 changes: 7 additions & 9 deletions ICGE-archetype-module/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<?xml version="1.0" encoding="utf8"?>
<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>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge-archetype-module</artifactId>
<version>1.0.0</version>
<name>Archetype for FIUS ICGE Modules </name>
<url>http://maven.apache.org</url>
<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>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge-archetype-module</artifactId>
<version>1.0.0</version>
<name>Archetype for FIUS ICGE Modules </name>
<url>http://maven.apache.org</url>
</project>
20 changes: 9 additions & 11 deletions ICGE-build-tools/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0" encoding="utf8"?>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-build-tools</artifactId>
<name>ICGE build tools</name>
<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>
<parent>
<groupId>de.uni-stuttgart.informatik.fius</groupId>
<artifactId>icge</artifactId>
<version>2.3.8</version>
</parent>
<artifactId>icge-build-tools</artifactId>
<name>ICGE build tools</name>
</project>
Loading

0 comments on commit 293a204

Please sign in to comment.