Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #7

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
1573bf3
Ammended the license
ziyanakthar Nov 9, 2021
6a6df91
Update pom.xml
ziyanakthar Nov 9, 2021
ce679b7
Reverting the modules in pom
ziyanakthar Nov 9, 2021
5ca6782
Modules updated in pom.xml
ziyanakthar Nov 9, 2021
872f091
Create Jenkinsfile
ziyanakthar Nov 9, 2021
327442d
Update Jenkinsfile
ziyanakthar Nov 9, 2021
fca9916
Updated the maven test
ziyanakthar Nov 9, 2021
1c5b2c8
Adding maven deployment script
ziyanakthar Nov 9, 2021
f81cfa6
Update Jenkinsfile
ziyanakthar Nov 9, 2021
5ca2768
Update Jenkinsfile
ziyanakthar Nov 9, 2021
0914721
Update Jenkinsfile
ziyanakthar Nov 9, 2021
3d73e27
Update Jenkinsfile
ziyanakthar Nov 9, 2021
b365518
Update Jenkinsfile
ziyanakthar Nov 9, 2021
1266186
Updated the READEM
Nov 9, 2021
71cfbf3
Updated the pom.xml
Nov 9, 2021
59b6e32
Poll timer
ziyanakthar Nov 9, 2021
072985d
Updating the junit dependencies in the project objects
ziyanakthar Nov 11, 2021
ca7b108
Change the jUnit v5 to 6
Nov 11, 2021
fb2e7da
Added README Instructions
Nov 11, 2021
534e8d6
Update the maven profiles
ziyanakthar Nov 11, 2021
cb90fce
Update the project object dependencies to v10
Nov 17, 2021
5491c02
Add extra notes to READMe.md
Nov 17, 2021
50226f6
Updated the groovy code to the Jenkinsfile
Nov 17, 2021
b4461a1
Switching to develop branch
Nov 17, 2021
2c685c8
Update Jenkinsfile
ziyanakthar Nov 17, 2021
2499b0a
Update Jenkinsfile
ziyanakthar Nov 17, 2021
3fb1205
Update Jenkinsfile
ziyanakthar Nov 17, 2021
2cc748a
Update Jenkinsfile
ziyanakthar Nov 17, 2021
2131bee
Update Jenkinsfile
ziyanakthar Nov 17, 2021
1155d51
Update Jenkinsfile
ziyanakthar Nov 17, 2021
cf3e57f
Delete Jenkinsfile
ziyanakthar Nov 19, 2021
783bc5b
Updated License
ziyanakthar Nov 19, 2021
411bf3b
Updated license with parameters
Nov 19, 2021
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
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
sc Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Preamble
Prfeamble

The GNU General Public License is a free, copyleft license for
software and other kinds of works.

SDDf
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
## Apache Maven Tutorial

Source code for mkyong.com Apache Maven tutorial

https://www.mkyong.com/tutorials/maven-tutorials/
https://www.mkyong.com/tutorials/maven-tutorials
4 changes: 2 additions & 2 deletions maven-profiles/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<artifactId>maven-profiles</artifactId>
<packaging>pom</packaging>
<version>1.0</version>

<!-- sub modules -->
<!-- sub modules -->>
<!-- sub modules -->>
<modules>
<module>example1</module>
<module>example2</module>
Expand Down
3 changes: 2 additions & 1 deletion maven-unit-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@
<dependencies>

<!-- junit 5, unit test -->
<!-- junit 6, unit test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>

<!-- junit 8 unit test -->
</dependencies>
<build>
<finalName>maven-unit-test</finalName>
Expand Down