File tree 6 files changed +43
-36
lines changed
src/main/java/io/github/ivannov/actuator
6 files changed +43
-36
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,4 @@ target/
11
11
.forge_settings
12
12
.factorypath
13
13
.externalToolBuilders
14
- rebuild.sh
15
14
Original file line number Diff line number Diff line change 4
4
<modelVersion >4.0.0</modelVersion >
5
5
<groupId >io.github.ivannov</groupId >
6
6
<artifactId >actuator-showcase</artifactId >
7
- <version >1.0.0-SNAPSHOT</version >
7
+ <parent >
8
+ <groupId >io.github.ivannov</groupId >
9
+ <artifactId >actuator-parent</artifactId >
10
+ <version >0.0.1-SNAPSHOT</version >
11
+ <relativePath >../pom.xml</relativePath >
12
+ </parent >
8
13
<build >
9
14
<finalName >actuator</finalName >
10
15
<plugins >
30
35
</plugins >
31
36
</build >
32
37
<packaging >war</packaging >
33
- <properties >
34
- <maven .compiler.source>1.8</maven .compiler.source>
35
- <maven .compiler.target>1.8</maven .compiler.target>
36
- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
37
- </properties >
38
-
39
- <dependencyManagement >
40
- <dependencies >
41
- <dependency >
42
- <groupId >javax</groupId >
43
- <artifactId >javaee-api</artifactId >
44
- <version >7.0</version >
45
- <scope >provided</scope >
46
- </dependency >
47
- </dependencies >
48
- </dependencyManagement >
49
38
<dependencies >
50
39
<dependency >
51
40
<groupId >javax</groupId >
Original file line number Diff line number Diff line change 4
4
<modelVersion >4.0.0</modelVersion >
5
5
<groupId >io.github.ivannov</groupId >
6
6
<artifactId >actuator</artifactId >
7
- <version >1.0.0-SNAPSHOT</version >
7
+ <parent >
8
+ <groupId >io.github.ivannov</groupId >
9
+ <artifactId >actuator-parent</artifactId >
10
+ <version >0.0.1-SNAPSHOT</version >
11
+ <relativePath >../pom.xml</relativePath >
12
+ </parent >
8
13
<dependencies >
9
14
<dependency >
10
15
<groupId >javax</groupId >
11
16
<artifactId >javaee-api</artifactId >
12
17
<scope >provided</scope >
13
18
</dependency >
14
19
</dependencies >
15
- <dependencyManagement >
16
- <dependencies >
17
- <dependency >
18
- <groupId >javax</groupId >
19
- <artifactId >javaee-api</artifactId >
20
- <version >7.0</version >
21
- <scope >provided</scope >
22
- </dependency >
23
- </dependencies >
24
- </dependencyManagement >
25
- <properties >
26
- <maven .compiler.source>1.8</maven .compiler.source>
27
- <maven .compiler.target>1.8</maven .compiler.target>
28
- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
29
- </properties >
30
20
</project >
Original file line number Diff line number Diff line change 1
- package io .github .ivannov .actuator .jmx ;
1
+ package io .github .ivannov .actuator .inspectors ;
2
2
3
3
import javax .annotation .PostConstruct ;
4
4
import javax .annotation .PreDestroy ;
Original file line number Diff line number Diff line change 1
1
package io .github .ivannov .actuator .resources ;
2
2
3
- import io .github .ivannov .actuator .jmx .UsageBean ;
3
+ import io .github .ivannov .actuator .inspectors .UsageBean ;
4
4
5
5
import javax .enterprise .context .RequestScoped ;
6
6
import javax .inject .Inject ;
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3
+ xmlns =" http://maven.apache.org/POM/4.0.0"
4
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+ <groupId >io.github.ivannov</groupId >
7
+ <artifactId >actuator-parent</artifactId >
8
+ <version >0.0.1-SNAPSHOT</version >
9
+ <packaging >pom</packaging >
10
+ <properties >
11
+ <maven .compiler.source>1.8</maven .compiler.source>
12
+ <maven .compiler.target>1.8</maven .compiler.target>
13
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
14
+ </properties >
15
+ <dependencyManagement >
16
+ <dependencies >
17
+ <dependency >
18
+ <groupId >javax</groupId >
19
+ <artifactId >javaee-api</artifactId >
20
+ <version >7.0</version >
21
+ <scope >provided</scope >
22
+ </dependency >
23
+ </dependencies >
24
+ </dependencyManagement >
25
+ <modules >
26
+ <module >javaee-actuator</module >
27
+ <module >javaee-actuator-showcase</module >
28
+ </modules >
29
+ </project >
You can’t perform that action at this time.
0 commit comments