Skip to content

Commit

Permalink
sort poms
Browse files Browse the repository at this point in the history
  • Loading branch information
Possommi committed Jun 12, 2024
1 parent 59712c9 commit fce7182
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 15 deletions.
3 changes: 1 addition & 2 deletions common/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?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">
<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>
Expand Down
3 changes: 1 addition & 2 deletions jena-thulb/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?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">
<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>
Expand Down
43 changes: 32 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?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">
<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>org.mycore</groupId>
<artifactId>mycore-parent</artifactId>
<version>49</version>
<relativePath/>
<relativePath />
</parent>
<groupId>de.uni-jena.thulb.ubo</groupId>
<artifactId>ThUniBib</artifactId>
Expand All @@ -27,6 +26,28 @@

<build>
<plugins>
<plugin>
<groupId>com.github.ekryd.sortpom</groupId>
<artifactId>sortpom-maven-plugin</artifactId>
<executions>
<execution>
<id>verify-sort-pom</id>
<goals>
<goal>sort</goal>
</goals>
<phase>validate</phase>
<configuration>
<createBackupFile>false</createBackupFile>
<expandEmptyElements>false</expandEmptyElements>
<spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
<keepBlankLines>true</keepBlankLines>
<sortDependencies>${sortpom.sortDeps}</sortDependencies>
<sortOrderFile>${sortpom.sortFile}</sortOrderFile>
<sortProperties>true</sortProperties>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down Expand Up @@ -100,23 +121,23 @@
</dependency>
<dependency>
<groupId>org.mycore</groupId>
<artifactId>oaipmh-harvester</artifactId>
<version>${oaipmh.version}</version>
<artifactId>mycore-orcid</artifactId>
<version>${mycore.version}</version>
</dependency>
<dependency>
<groupId>org.mycore</groupId>
<artifactId>oaipmh</artifactId>
<version>${oaipmh.version}</version>
<artifactId>mycore-user2</artifactId>
<version>${mycore.version}</version>
</dependency>
<dependency>
<groupId>org.mycore</groupId>
<artifactId>mycore-orcid</artifactId>
<version>${mycore.version}</version>
<artifactId>oaipmh</artifactId>
<version>${oaipmh.version}</version>
</dependency>
<dependency>
<groupId>org.mycore</groupId>
<artifactId>mycore-user2</artifactId>
<version>${mycore.version}</version>
<artifactId>oaipmh-harvester</artifactId>
<version>${oaipmh.version}</version>
</dependency>
<dependency>
<groupId>org.mycore.ubo</groupId>
Expand Down

0 comments on commit fce7182

Please sign in to comment.