Skip to content

Commit 5f9ac45

Browse files
committed
no tabs
1 parent 99e8055 commit 5f9ac45

File tree

1 file changed

+87
-87
lines changed

1 file changed

+87
-87
lines changed

pom.xml

Lines changed: 87 additions & 87 deletions
Original file line numberDiff line numberDiff line change
@@ -15,100 +15,100 @@
1515
limitations under the License.
1616
-->
1717
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19-
<modelVersion>4.0.0</modelVersion>
18+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<modelVersion>4.0.0</modelVersion>
2020

21-
<parent>
22-
<groupId>org.mybatis</groupId>
23-
<artifactId>mybatis-parent</artifactId>
24-
<version>19</version>
25-
</parent>
21+
<parent>
22+
<groupId>org.mybatis</groupId>
23+
<artifactId>mybatis-parent</artifactId>
24+
<version>19</version>
25+
</parent>
2626

27-
<artifactId>mybatis-cdi</artifactId>
28-
<version>1.0-SNAPSHOT</version>
29-
<packaging>jar</packaging>
27+
<artifactId>mybatis-cdi</artifactId>
28+
<version>1.0-SNAPSHOT</version>
29+
<packaging>jar</packaging>
3030

31-
<name>MyBatis CDI Extension</name>
32-
<url>http://mybatis.org</url>
31+
<name>MyBatis CDI Extension</name>
32+
<url>http://mybatis.org</url>
3333

34-
<scm>
35-
<url>http://github.com/mybatis/cdi</url>
36-
<connection>scm:git:ssh://github.com/mybatis/cdi.git</connection>
37-
<developerConnection>scm:git:git+ssh://[email protected]/mybatis/cdi.git</developerConnection>
38-
<tag>HEAD</tag>
39-
</scm>
40-
<issueManagement>
41-
<system>GitHub Issue Management</system>
42-
<url>https://github.com/mybatis/cdi/issues</url>
43-
</issueManagement>
44-
<ciManagement>
45-
<system>Travis CI</system>
46-
<url>https://travis-ci.org/mybatis/cdi</url>
47-
</ciManagement>
48-
<distributionManagement>
49-
<site>
50-
<id>github</id>
51-
<url>gitsite:[email protected]/mybatis/cdi.git</url>
52-
</site>
53-
</distributionManagement>
34+
<scm>
35+
<url>http://github.com/mybatis/cdi</url>
36+
<connection>scm:git:ssh://github.com/mybatis/cdi.git</connection>
37+
<developerConnection>scm:git:git+ssh://[email protected]/mybatis/cdi.git</developerConnection>
38+
<tag>HEAD</tag>
39+
</scm>
40+
<issueManagement>
41+
<system>GitHub Issue Management</system>
42+
<url>https://github.com/mybatis/cdi/issues</url>
43+
</issueManagement>
44+
<ciManagement>
45+
<system>Travis CI</system>
46+
<url>https://travis-ci.org/mybatis/cdi</url>
47+
</ciManagement>
48+
<distributionManagement>
49+
<site>
50+
<id>github</id>
51+
<url>gitsite:[email protected]/mybatis/cdi.git</url>
52+
</site>
53+
</distributionManagement>
5454

55-
<properties>
56-
<findbugs.onlyAnalyze>org.mybatis.cdi.*</findbugs.onlyAnalyze>
57-
<osgi.import>org.ibatis.*;resolution:=optional,*</osgi.import>
58-
<osgi.dynamicImport>*</osgi.dynamicImport>
59-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
60-
</properties>
55+
<properties>
56+
<findbugs.onlyAnalyze>org.mybatis.cdi.*</findbugs.onlyAnalyze>
57+
<osgi.import>org.ibatis.*;resolution:=optional,*</osgi.import>
58+
<osgi.dynamicImport>*</osgi.dynamicImport>
59+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
60+
</properties>
6161

62-
<dependencies>
63-
<dependency>
64-
<groupId>org.mybatis</groupId>
65-
<artifactId>mybatis</artifactId>
66-
<version>3.2.4</version>
67-
<scope>provided</scope>
68-
</dependency>
69-
<dependency>
70-
<groupId>org.jboss.weld.se</groupId>
71-
<artifactId>weld-se</artifactId>
72-
<version>2.1.1.Final</version>
73-
<scope>provided</scope>
74-
</dependency>
75-
<dependency>
76-
<groupId>javax.transaction</groupId>
77-
<artifactId>jta</artifactId>
78-
<version>1.1</version>
79-
<scope>provided</scope>
80-
</dependency>
62+
<dependencies>
63+
<dependency>
64+
<groupId>org.mybatis</groupId>
65+
<artifactId>mybatis</artifactId>
66+
<version>3.2.4</version>
67+
<scope>provided</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.jboss.weld.se</groupId>
71+
<artifactId>weld-se</artifactId>
72+
<version>2.1.1.Final</version>
73+
<scope>provided</scope>
74+
</dependency>
75+
<dependency>
76+
<groupId>javax.transaction</groupId>
77+
<artifactId>jta</artifactId>
78+
<version>1.1</version>
79+
<scope>provided</scope>
80+
</dependency>
8181

82-
<!-- Test dependencies -->
83-
<dependency>
84-
<groupId>junit</groupId>
85-
<artifactId>junit</artifactId>
86-
<version>4.11</version>
87-
<scope>test</scope>
88-
</dependency>
89-
<dependency>
90-
<groupId>org.codehaus.btm</groupId>
91-
<artifactId>btm</artifactId>
92-
<version>2.1.4</version>
93-
</dependency>
94-
<dependency>
95-
<groupId>org.apache.derby</groupId>
96-
<artifactId>derby</artifactId>
97-
<version>10.10.1.1</version>
98-
<scope>test</scope>
99-
</dependency>
100-
</dependencies>
82+
<!-- Test dependencies -->
83+
<dependency>
84+
<groupId>junit</groupId>
85+
<artifactId>junit</artifactId>
86+
<version>4.11</version>
87+
<scope>test</scope>
88+
</dependency>
89+
<dependency>
90+
<groupId>org.codehaus.btm</groupId>
91+
<artifactId>btm</artifactId>
92+
<version>2.1.4</version>
93+
</dependency>
94+
<dependency>
95+
<groupId>org.apache.derby</groupId>
96+
<artifactId>derby</artifactId>
97+
<version>10.10.1.1</version>
98+
<scope>test</scope>
99+
</dependency>
100+
</dependencies>
101101

102-
<build>
103-
<plugins>
104-
<plugin>
105-
<groupId>org.apache.maven.plugins</groupId>
106-
<artifactId>maven-site-plugin</artifactId>
107-
<configuration>
108-
<locales>en</locales>
109-
</configuration>
110-
</plugin>
111-
</plugins>
112-
</build>
102+
<build>
103+
<plugins>
104+
<plugin>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-site-plugin</artifactId>
107+
<configuration>
108+
<locales>en</locales>
109+
</configuration>
110+
</plugin>
111+
</plugins>
112+
</build>
113113

114114
</project>

0 commit comments

Comments
 (0)