Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b5eb4a4
Merge pull request #1 from iluwatar/master
hbothra15 Oct 17, 2019
969a2c7
Merge pull request #2 from iluwatar/master
hbothra15 Oct 25, 2019
2963418
Merge pull request #3 from iluwatar/master
hbothra15 Nov 7, 2019
4acdfe3
Merge pull request #4 from iluwatar/master
hbothra15 Nov 15, 2019
110f8f2
Adding support for maven assembly plugin to generate executable jar w…
Nov 16, 2019
1f3c6b1
Merge pull request #5 from iluwatar/master
hbothra15 Nov 18, 2019
38199ef
Merge branch 'master' into issue-989
Nov 18, 2019
d88a6c5
Merge branch 'master' into issue-989
Nov 18, 2019
eafa3ab
Adding maven assemly plugin for projects with name A
Nov 18, 2019
5daa724
Update in format as per checkstyle, i.e. Spcae in place of tab with s…
Nov 18, 2019
f99b7d7
batch set - 2 having all project with B and C
Nov 30, 2019
7a5a052
Merge branch 'master' into issue-989
hbothra15 Nov 30, 2019
4476020
Merge pull request #6 from iluwatar/master
hbothra15 Dec 3, 2019
b743b89
Merge branch 'master' into issue-989
Dec 3, 2019
90bf7a6
issue-989 d-e-f
Dec 9, 2019
ff637de
Merge pull request #7 from iluwatar/master
hbothra15 Dec 9, 2019
e830e90
Merge branch 'master' of https://github.com/hbothra15/java-design-pat…
Dec 9, 2019
9590028
Merge pull request #8 from iluwatar/master
hbothra15 Dec 13, 2019
ff6c0e9
Merge branch 'master' of https://github.com/hbothra15/java-design-pat…
Dec 13, 2019
e24e839
fixing eip pom and adding g-h-i-l-m-n Skipping naked object as it see…
hemant-bothra Dec 13, 2019
dfe7e2c
Merge pull request #9 from iluwatar/master
hbothra15 Dec 15, 2019
d9dd01b
Adding for O and P projects Skipping Object-Mother as we don't have m…
hemant-bothra Dec 15, 2019
687dd98
Merge branch 'master' of https://github.com/hbothra15/java-design-pat…
hemant-bothra Dec 15, 2019
b971fa3
Merge pull request #10 from iluwatar/master
hbothra15 Dec 28, 2019
661ad22
Merge branch 'master' of https://github.com/hbothra15/java-design-pat…
hemant-bothra Dec 28, 2019
6b2db52
Final batch
hemant-bothra Dec 28, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixing eip pom and adding g-h-i-l-m-n Skipping naked object as it see…
…ms it doesn't have main method, will consider this at end
  • Loading branch information
hemant-bothra committed Dec 13, 2019
commit e24e839628cf933ec326910ae51b9d0115603d55
2 changes: 1 addition & 1 deletion eip-message-channel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.epi.message.channel.App</mainClass>
<mainClass>com.iluwatar.eip.message.channel.App</mainClass>
</manifest>
</archive>
</configuration>
Expand Down
20 changes: 19 additions & 1 deletion game-loop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,24 @@
<artifactId>junit</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.gameloop.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
19 changes: 19 additions & 0 deletions guarded-suspension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.guarded.suspension.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions half-sync-half-async/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.halfsynchalfasync.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions hexagonal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,23 @@
<artifactId>mongo-java-driver</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.hexagonal.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions intercepting-filter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.intercepting.filter.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions interpreter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.interpreter.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions iterator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.iterator.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions layers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.layers.app.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions lazy-loading/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.lazy.loading.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
32 changes: 32 additions & 0 deletions leader-election/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,36 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>bully</id>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.leaderelection.bully.BullyApp</mainClass>
</manifest>
</archive>
<finalName>${project.artifactId}-Bully</finalName>
</configuration>
</execution>
<execution>
<id>ring</id>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.leaderelection.ring.RingApp</mainClass>
</manifest>
</archive>
<finalName>${project.artifactId}-Ring</finalName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
21 changes: 19 additions & 2 deletions marker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,23 @@
<scope>test</scope>
</dependency>
</dependencies>


<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions master-worker-pattern/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.masterworker.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions mediator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.mediator.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions memento/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.memento.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions model-view-controller/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.model.view.controller.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading