Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
19 changes: 19 additions & 0 deletions reactor/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.reactor.app.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
20 changes: 19 additions & 1 deletion reader-writer-lock/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,24 @@
<artifactId>mockito-core</artifactId>
<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.reader.writer.lock.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions repository/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,23 @@
<artifactId>spring-boot-starter-test</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.repository.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions resource-acquisition-is-initialization/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.resource.acquisition.is.initialization.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions retry/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.retry.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions role-object/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,23 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.roleobject.ApplicationRoleObject</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
31 changes: 30 additions & 1 deletion saga/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,34 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>Choreography</id>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.saga.choreography.SagaApplication</mainClass>
</manifest>
</archive>
</configuration>
</execution>
<execution>
<id>Orchestration</id>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.saga.orchestration.SagaApplication</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions semaphore/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.semaphore.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions servant/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.servant.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
20 changes: 19 additions & 1 deletion service-layer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,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.servicelayer.app.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions service-locator/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.servicelocator.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
20 changes: 19 additions & 1 deletion sharding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,23 @@
<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.sharding.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions singleton/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,23 @@
<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.singleton.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
21 changes: 20 additions & 1 deletion spatial-partition/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,24 @@
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.spatialpartition.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
19 changes: 19 additions & 0 deletions specification/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.specification.app.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading