Skip to content

Commit 15ac214

Browse files
committed
reformat file to use single indent type
1 parent 8320501 commit 15ac214

File tree

1 file changed

+118
-104
lines changed

1 file changed

+118
-104
lines changed

pom.xml

Lines changed: 118 additions & 104 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
<groupId>org.cryptomator</groupId>
7-
<artifactId>integrations-api</artifactId>
8-
<version>1.5.0-SNAPSHOT</version>
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>org.cryptomator</groupId>
7+
<artifactId>integrations-api</artifactId>
8+
<version>1.5.0-SNAPSHOT</version>
99

10-
<name>Cryptomator Integrations API</name>
11-
<description>Defines optional service interfaces that may be used by Cryptomator</description>
12-
<url>https://github.com/cryptomator/integrations-api</url>
13-
<scm>
14-
<connection>scm:git:[email protected]:cryptomator/integrations-api.git</connection>
15-
<developerConnection>scm:git:[email protected]:cryptomator/integrations-api.git</developerConnection>
16-
<url>[email protected]:cryptomator/integrations-api.git</url>
17-
</scm>
18-
<developers>
19-
<developer>
20-
<name>Sebastian Stenzel</name>
21-
<email>[email protected]</email>
22-
<timezone>+1</timezone>
23-
<organization>Skymatic GmbH</organization>
24-
<organizationUrl>http://skymatic.de</organizationUrl>
25-
</developer>
26-
</developers>
10+
<name>Cryptomator Integrations API</name>
11+
<description>Defines optional service interfaces that may be used by Cryptomator</description>
12+
<url>https://github.com/cryptomator/integrations-api</url>
13+
<scm>
14+
<connection>scm:git:[email protected]:cryptomator/integrations-api.git</connection>
15+
<developerConnection>scm:git:[email protected]:cryptomator/integrations-api.git</developerConnection>
16+
<url>[email protected]:cryptomator/integrations-api.git</url>
17+
</scm>
18+
<developers>
19+
<developer>
20+
<name>Sebastian Stenzel</name>
21+
<email>[email protected]</email>
22+
<timezone>+1</timezone>
23+
<organization>Skymatic GmbH</organization>
24+
<organizationUrl>http://skymatic.de</organizationUrl>
25+
</developer>
26+
</developers>
2727

28-
<properties>
29-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30-
</properties>
28+
<properties>
29+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30+
</properties>
3131

32-
<licenses>
33-
<license>
34-
<name>GNU Affero General Public License (AGPL) version 3.0</name>
35-
<url>https://www.gnu.org/licenses/agpl.txt</url>
36-
<distribution>repo</distribution>
37-
</license>
38-
</licenses>
32+
<licenses>
33+
<license>
34+
<name>GNU Affero General Public License (AGPL) version 3.0</name>
35+
<url>https://www.gnu.org/licenses/agpl.txt</url>
36+
<distribution>repo</distribution>
37+
</license>
38+
</licenses>
3939

4040
<dependencies>
4141
<dependency>
@@ -70,78 +70,92 @@
7070
</dependency>
7171
</dependencies>
7272

73-
<build>
74-
<plugins>
75-
<plugin>
76-
<groupId>org.apache.maven.plugins</groupId>
77-
<artifactId>maven-compiler-plugin</artifactId>
78-
<version>3.13.0</version>
79-
<configuration>
80-
<release>17</release>
81-
</configuration>
82-
</plugin>
83-
<plugin>
84-
<artifactId>maven-source-plugin</artifactId>
85-
<version>3.3.1</version>
86-
<executions>
87-
<execution>
88-
<id>attach-sources</id>
89-
<goals>
90-
<goal>jar-no-fork</goal>
91-
</goals>
92-
</execution>
93-
</executions>
94-
</plugin>
95-
<plugin>
96-
<groupId>org.apache.maven.plugins</groupId>
97-
<artifactId>maven-surefire-plugin</artifactId>
98-
<version>3.5.2</version>
99-
</plugin>
100-
<plugin>
101-
<artifactId>maven-javadoc-plugin</artifactId>
102-
<version>3.11.2</version>
103-
<executions>
104-
<execution>
105-
<id>attach-javadocs</id>
106-
<goals>
107-
<goal>jar</goal>
108-
</goals>
109-
</execution>
110-
</executions>
111-
<configuration>
112-
<quiet>true</quiet>
113-
<release>17</release>
114-
<tags>
115-
<!-- workaround for "unknown tag: implNote", see https://blog.codefx.org/java/new-javadoc-tags/#Maven -->
116-
<tag>
117-
<name>apiNote</name>
118-
<placement>a</placement>
119-
<head>API Note:</head>
120-
</tag>
121-
<tag>
122-
<name>implSpec</name>
123-
<placement>a</placement>
124-
<head>Implementation Requirements:</head>
125-
</tag>
126-
<tag>
127-
<name>implNote</name>
128-
<placement>a</placement>
129-
<head>Implementation Note:</head>
130-
</tag>
131-
<tag><name>param</name></tag>
132-
<tag><name>return</name></tag>
133-
<tag><name>throws</name></tag>
134-
<tag><name>since</name></tag>
135-
<tag><name>version</name></tag>
136-
<tag><name>serialData</name></tag>
137-
<tag><name>see</name></tag>
138-
</tags>
139-
</configuration>
140-
</plugin>
141-
</plugins>
142-
</build>
73+
<build>
74+
<plugins>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-compiler-plugin</artifactId>
78+
<version>3.13.0</version>
79+
<configuration>
80+
<release>17</release>
81+
</configuration>
82+
</plugin>
83+
<plugin>
84+
<artifactId>maven-source-plugin</artifactId>
85+
<version>3.3.1</version>
86+
<executions>
87+
<execution>
88+
<id>attach-sources</id>
89+
<goals>
90+
<goal>jar-no-fork</goal>
91+
</goals>
92+
</execution>
93+
</executions>
94+
</plugin>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-surefire-plugin</artifactId>
98+
<version>3.5.2</version>
99+
</plugin>
100+
<plugin>
101+
<artifactId>maven-javadoc-plugin</artifactId>
102+
<version>3.11.2</version>
103+
<executions>
104+
<execution>
105+
<id>attach-javadocs</id>
106+
<goals>
107+
<goal>jar</goal>
108+
</goals>
109+
</execution>
110+
</executions>
111+
<configuration>
112+
<quiet>true</quiet>
113+
<release>17</release>
114+
<tags>
115+
<!-- workaround for "unknown tag: implNote", see https://blog.codefx.org/java/new-javadoc-tags/#Maven -->
116+
<tag>
117+
<name>apiNote</name>
118+
<placement>a</placement>
119+
<head>API Note:</head>
120+
</tag>
121+
<tag>
122+
<name>implSpec</name>
123+
<placement>a</placement>
124+
<head>Implementation Requirements:</head>
125+
</tag>
126+
<tag>
127+
<name>implNote</name>
128+
<placement>a</placement>
129+
<head>Implementation Note:</head>
130+
</tag>
131+
<tag>
132+
<name>param</name>
133+
</tag>
134+
<tag>
135+
<name>return</name>
136+
</tag>
137+
<tag>
138+
<name>throws</name>
139+
</tag>
140+
<tag>
141+
<name>since</name>
142+
</tag>
143+
<tag>
144+
<name>version</name>
145+
</tag>
146+
<tag>
147+
<name>serialData</name>
148+
</tag>
149+
<tag>
150+
<name>see</name>
151+
</tag>
152+
</tags>
153+
</configuration>
154+
</plugin>
155+
</plugins>
156+
</build>
143157

144-
<profiles>
158+
<profiles>
145159
<profile>
146160
<id>sign</id>
147161
<build>

0 commit comments

Comments
 (0)