Skip to content

Commit f153421

Browse files
committed
update pom
1 parent edb412c commit f153421

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
@startuml
2+
package com.iluwatar.composemethod {
3+
class AddImpl {
4+
- DEFAULT_NUMBER : int {static}
5+
+ AddImpl()
6+
+ addPositiveNodesOriginal(head : Node) : int {static}
7+
+ addPositiveNodesRefined(head : Node) : int {static}
8+
+ grow(nums : int[]) : int {static}
9+
+ isPositive(a : int) : boolean {static}
10+
+ lengthDetect(tail : Node) : boolean {static}
11+
+ nextNode(tail : Node) : Node {static}
12+
+ nodeDetect(tail : Node) : boolean {static}
13+
+ numGrow(adder : int) : int {static}
14+
+ numberGrowth(tail : Node) : int {static}
15+
}
16+
class App {
17+
- LOGGER : Logger {static}
18+
+ App()
19+
+ main(args : String[]) {static}
20+
}
21+
class Node {
22+
~ next : Node
23+
~ nums : int[]
24+
+ Node()
25+
}
26+
}
27+
Node --> "-next" Node
28+
@enduml

compose-method/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@
1818
<scope>test</scope>
1919
</dependency>
2020
</dependencies>
21-
21+
<packaging>pom</packaging>
22+
<build>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-assembly-plugin</artifactId>
27+
</plugin>
28+
</plugins>
29+
</build>
2230
<properties>
2331
<maven.compiler.source>11</maven.compiler.source>
2432
<maven.compiler.target>11</maven.compiler.target>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@
224224
<module>parameter-object</module>
225225
<module>active-object</module>
226226
<module>model-view-viewmodel</module>
227+
<module>compose-method</module>
227228
</modules>
228229

229230
<repositories>

0 commit comments

Comments
 (0)