Skip to content

Commit 27086aa

Browse files
author
Eugen Paraschiv
committed
pom cleanup
1 parent 624c72b commit 27086aa

6 files changed

Lines changed: 212 additions & 214 deletions

File tree

activejdbc/pom.xml

Lines changed: 124 additions & 124 deletions
Original file line numberDiff line numberDiff line change
@@ -1,129 +1,129 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.baeldung</groupId>
5-
<artifactId>activejdbc</artifactId>
6-
<version>1.0-SNAPSHOT</version>
7-
<packaging>jar</packaging>
8-
<name>activejdbc</name>
9-
<url>http://maven.apache.org</url>
10-
<properties>
11-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<activejdbc.version>1.4.13</activejdbc.version>
13-
<environments>development.test,development</environments>
14-
</properties>
15-
<build>
16-
<plugins>
17-
<plugin>
18-
<groupId>org.apache.maven.plugins</groupId>
19-
<artifactId>maven-compiler-plugin</artifactId>
20-
<version>3.6.0</version>
21-
<configuration>
22-
<source>1.8</source>
23-
<target>1.8</target>
24-
<encoding>UTF-8</encoding>
25-
</configuration>
26-
</plugin>
27-
<plugin>
28-
<groupId>org.javalite</groupId>
29-
<artifactId>activejdbc-instrumentation</artifactId>
30-
<version>${activejdbc.version}</version>
31-
<executions>
32-
<execution>
33-
<phase>process-classes</phase>
34-
<goals>
35-
<goal>instrument</goal>
36-
</goals>
37-
</execution>
38-
</executions>
39-
</plugin>
40-
<plugin>
41-
<groupId>org.javalite</groupId>
42-
<artifactId>db-migrator-maven-plugin</artifactId>
43-
<version>${activejdbc.version}</version>
44-
<configuration>
45-
<configFile>${project.basedir}/src/main/resources/database.properties</configFile>
46-
<environments>${environments}</environments>
47-
</configuration>
48-
<dependencies>
49-
<dependency>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.baeldung</groupId>
5+
<artifactId>activejdbc</artifactId>
6+
<version>1.0-SNAPSHOT</version>
7+
<packaging>jar</packaging>
8+
<name>activejdbc</name>
9+
<url>http://maven.apache.org</url>
10+
<properties>
11+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12+
<activejdbc.version>1.4.13</activejdbc.version>
13+
<environments>development.test,development</environments>
14+
</properties>
15+
<build>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.apache.maven.plugins</groupId>
19+
<artifactId>maven-compiler-plugin</artifactId>
20+
<version>3.6.0</version>
21+
<configuration>
22+
<source>1.8</source>
23+
<target>1.8</target>
24+
<encoding>UTF-8</encoding>
25+
</configuration>
26+
</plugin>
27+
<plugin>
28+
<groupId>org.javalite</groupId>
29+
<artifactId>activejdbc-instrumentation</artifactId>
30+
<version>${activejdbc.version}</version>
31+
<executions>
32+
<execution>
33+
<phase>process-classes</phase>
34+
<goals>
35+
<goal>instrument</goal>
36+
</goals>
37+
</execution>
38+
</executions>
39+
</plugin>
40+
<plugin>
41+
<groupId>org.javalite</groupId>
42+
<artifactId>db-migrator-maven-plugin</artifactId>
43+
<version>${activejdbc.version}</version>
44+
<configuration>
45+
<configFile>${project.basedir}/src/main/resources/database.properties</configFile>
46+
<environments>${environments}</environments>
47+
</configuration>
48+
<dependencies>
49+
<dependency>
50+
<groupId>mysql</groupId>
51+
<artifactId>mysql-connector-java</artifactId>
52+
<version>5.1.34</version>
53+
</dependency>
54+
</dependencies>
55+
</plugin>
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-surefire-plugin</artifactId>
59+
<version>2.18.1</version>
60+
<configuration>
61+
<reportFormat>brief</reportFormat>
62+
<trimStackTrace>true</trimStackTrace>
63+
<useFile>false</useFile>
64+
<includes>
65+
<include>**/*Spec*.java</include>
66+
<include>**/*Test*.java</include>
67+
</includes>
68+
<excludes>
69+
<exclude>**/helpers/*</exclude>
70+
<exclude>**/*$*</exclude>
71+
</excludes>
72+
</configuration>
73+
</plugin>
74+
</plugins>
75+
</build>
76+
<dependencies>
77+
<dependency>
78+
<groupId>junit</groupId>
79+
<artifactId>junit</artifactId>
80+
<version>4.12</version>
81+
<scope>test</scope>
82+
</dependency>
83+
<dependency>
84+
<groupId>org.javalite</groupId>
85+
<artifactId>activejdbc</artifactId>
86+
<version>${activejdbc.version}</version>
87+
<exclusions>
88+
<exclusion>
89+
<groupId>opensymphony</groupId>
90+
<artifactId>oscache</artifactId>
91+
</exclusion>
92+
</exclusions>
93+
</dependency>
94+
<dependency>
5095
<groupId>mysql</groupId>
5196
<artifactId>mysql-connector-java</artifactId>
5297
<version>5.1.34</version>
53-
</dependency>
54-
</dependencies>
55-
</plugin>
56-
<plugin>
57-
<groupId>org.apache.maven.plugins</groupId>
58-
<artifactId>maven-surefire-plugin</artifactId>
59-
<version>2.18.1</version>
60-
<configuration>
61-
<reportFormat>brief</reportFormat>
62-
<trimStackTrace>true</trimStackTrace>
63-
<useFile>false</useFile>
64-
<includes>
65-
<include>**/*Spec*.java</include>
66-
<include>**/*Test*.java</include>
67-
</includes>
68-
<excludes>
69-
<exclude>**/helpers/*</exclude>
70-
<exclude>**/*$*</exclude>
71-
</excludes>
72-
</configuration>
73-
</plugin>
74-
</plugins>
75-
</build>
76-
<dependencies>
77-
<dependency>
78-
<groupId>junit</groupId>
79-
<artifactId>junit</artifactId>
80-
<version>4.12</version>
81-
<scope>test</scope>
82-
</dependency>
83-
<dependency>
84-
<groupId>org.javalite</groupId>
85-
<artifactId>activejdbc</artifactId>
86-
<version>${activejdbc.version}</version>
87-
<exclusions>
88-
<exclusion>
89-
<groupId>opensymphony</groupId>
90-
<artifactId>oscache</artifactId>
91-
</exclusion>
92-
</exclusions>
93-
</dependency>
94-
<dependency>
95-
<groupId>mysql</groupId>
96-
<artifactId>mysql-connector-java</artifactId>
97-
<version>5.1.34</version>
98-
</dependency>
99-
<dependency>
100-
<groupId>org.slf4j</groupId>
101-
<artifactId>slf4j-simple</artifactId>
102-
<version>1.7.9</version>
103-
</dependency>
104-
</dependencies>
105-
<repositories>
106-
<repository>
107-
<id>snapshots1</id>
108-
<name>JavaLite Snapshots1</name>
109-
<url>http://repo.javalite.io/</url>
110-
<snapshots>
111-
<enabled>true</enabled>
112-
<updatePolicy>always</updatePolicy>
113-
<checksumPolicy>warn</checksumPolicy>
114-
</snapshots>
115-
</repository>
116-
</repositories>
117-
<pluginRepositories>
118-
<pluginRepository>
119-
<id>snapshots2</id>
120-
<name>JavaLite Snapshots2</name>
121-
<url>http://repo.javalite.io/</url>
122-
<snapshots>
123-
<enabled>true</enabled>
124-
<updatePolicy>always</updatePolicy>
125-
<checksumPolicy>warn</checksumPolicy>
126-
</snapshots>
127-
</pluginRepository>
128-
</pluginRepositories>
98+
</dependency>
99+
<dependency>
100+
<groupId>org.slf4j</groupId>
101+
<artifactId>slf4j-simple</artifactId>
102+
<version>1.7.9</version>
103+
</dependency>
104+
</dependencies>
105+
<repositories>
106+
<repository>
107+
<id>snapshots1</id>
108+
<name>JavaLite Snapshots1</name>
109+
<url>http://repo.javalite.io/</url>
110+
<snapshots>
111+
<enabled>true</enabled>
112+
<updatePolicy>always</updatePolicy>
113+
<checksumPolicy>warn</checksumPolicy>
114+
</snapshots>
115+
</repository>
116+
</repositories>
117+
<pluginRepositories>
118+
<pluginRepository>
119+
<id>snapshots2</id>
120+
<name>JavaLite Snapshots2</name>
121+
<url>http://repo.javalite.io/</url>
122+
<snapshots>
123+
<enabled>true</enabled>
124+
<updatePolicy>always</updatePolicy>
125+
<checksumPolicy>warn</checksumPolicy>
126+
</snapshots>
127+
</pluginRepository>
128+
</pluginRepositories>
129129
</project>

asm/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<groupId>com.baeldung.examples</groupId>
56
<artifactId>asm</artifactId>
67
<version>1.0</version>
78
<packaging>jar</packaging>
9+
810
<dependencies>
911
<dependency>
1012
<groupId>org.ow2.asm</groupId>
@@ -17,12 +19,14 @@
1719
<version>5.2</version>
1820
</dependency>
1921
</dependencies>
22+
2023
<properties>
2124
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2225
<maven.compiler.source>1.8</maven.compiler.source>
2326
<maven.compiler.target>1.8</maven.compiler.target>
2427
</properties>
25-
<build>
28+
29+
<build>
2630
<plugins>
2731
<plugin>
2832
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)