[java-plugin-storage-jdbc] 02/05: Untabify
Rod Widdowson
rdw at steadingsoftware.com
Fri May 20 14:00:55 UTC 2022
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-plugin-storage-jdbc.
View the commit online:
http://git.shibboleth.net/view/?p=java-plugin-storage-jdbc.git;a=commit;h=a4ccf546cc02e792332307189accf780950d06ec
commit a4ccf546cc02e792332307189accf780950d06ec
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Mon May 16 15:47:03 2022 +0100
Untabify
---
jdbc-storage-api/pom.xml | 102 +++++++++++++++++++++++-----------------------
jdbc-storage-dist/pom.xml | 7 +---
jdbc-storage-impl/pom.xml | 8 ++--
3 files changed, 57 insertions(+), 60 deletions(-)
diff --git a/jdbc-storage-api/pom.xml b/jdbc-storage-api/pom.xml
index 8cfa2ac..252bc3b 100644
--- a/jdbc-storage-api/pom.xml
+++ b/jdbc-storage-api/pom.xml
@@ -1,59 +1,59 @@
<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>
+ 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>net.shibboleth.idp.plugin.storage.jdbc</groupId>
- <artifactId>idp-plugin-storage-jdbc-parent</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
+ <parent>
+ <groupId>net.shibboleth.idp.plugin.storage.jdbc</groupId>
+ <artifactId>idp-plugin-storage-jdbc-parent</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
- <artifactId>idp-plugin-jdbc-storage-api</artifactId>
- <packaging>jar</packaging>
- <name>Shibboleth IdP :: Plugins :: jdbc-storage API</name>
- <description>IdP jdbc-storage plugin API.</description>
+ <artifactId>idp-plugin-jdbc-storage-api</artifactId>
+ <packaging>jar</packaging>
+ <name>Shibboleth IdP :: Plugins :: jdbc-storage API</name>
+ <description>IdP jdbc-storage plugin API.</description>
- <properties>
- <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
- <automatic.module.name>net.shibboleth.idp.plugin.storage.jdbc.jdbc-storage.api</automatic.module.name>
- </properties>
+ <properties>
+ <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
+ <automatic.module.name>net.shibboleth.idp.plugin.storage.jdbc.jdbc-storage.api</automatic.module.name>
+ </properties>
- <dependencies>
- <!-- Provided dependencies -->
- <dependency>
- <groupId>com.google.code.findbugs</groupId>
- <artifactId>jsr305</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
+ <dependencies>
+ <!-- Provided dependencies -->
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <index>true</index>
- <manifestEntries>
- <Main-Class>net.shibboleth.idp.plugin.storage.jdbc.Version</Main-Class>
- </manifestEntries>
- <manifestSections>
- <manifestSection>
- <name>org/example/com/jdbc-storage/</name>
- <manifestEntries>
- <Implementation-Title>${project.artifactId}</Implementation-Title>
- <Implementation-Version>${project.version}</Implementation-Version>
- <Implementation-Vendor>FINISH</Implementation-Vendor>
- </manifestEntries>
- </manifestSection>
- </manifestSections>
- </archive>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <index>true</index>
+ <manifestEntries>
+ <Main-Class>net.shibboleth.idp.plugin.storage.jdbc.Version</Main-Class>
+ </manifestEntries>
+ <manifestSections>
+ <manifestSection>
+ <name>org/example/com/jdbc-storage/</name>
+ <manifestEntries>
+ <Implementation-Title>${project.artifactId}</Implementation-Title>
+ <Implementation-Version>${project.version}</Implementation-Version>
+ <Implementation-Vendor>FINISH</Implementation-Vendor>
+ </manifestEntries>
+ </manifestSection>
+ </manifestSections>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
-</project>
\ No newline at end of file
+</project>
diff --git a/jdbc-storage-dist/pom.xml b/jdbc-storage-dist/pom.xml
index 33d7385..e5e0eb3 100644
--- a/jdbc-storage-dist/pom.xml
+++ b/jdbc-storage-dist/pom.xml
@@ -1,5 +1,5 @@
<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">
+ 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>
@@ -73,15 +73,12 @@
<checkDependencies>true</checkDependencies>
<listJarSources>false</listJarSources>
<checkM2>false</checkM2>
- </jarEnforcer>
+ </jarEnforcer>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
-
</build>
-
-
</project>
diff --git a/jdbc-storage-impl/pom.xml b/jdbc-storage-impl/pom.xml
index bcfbfc8..a57c07a 100644
--- a/jdbc-storage-impl/pom.xml
+++ b/jdbc-storage-impl/pom.xml
@@ -1,5 +1,5 @@
<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">
+ 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>
@@ -19,7 +19,7 @@
</properties>
<dependencies>
- <!-- compile time intra project dependencies -->
+ <!-- compile time intra project dependencies -->
<dependency>
<groupId>net.shibboleth.idp.plugin.storage.jdbc</groupId>
<artifactId>idp-plugin-jdbc-storage-api</artifactId>
@@ -35,8 +35,8 @@
<artifactId>idp-admin-impl</artifactId>
<scope>provided</scope>
</dependency>
-
+
</dependencies>
-</project>
\ No newline at end of file
+</project>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list