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

Add a .gitignore, README, and artifact clean up #1

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file removed .DS_Store
Binary file not shown.
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
target/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Java Web Services

This repository accompanies Bharath Thippireddy's Udemy course *Java Web Services*. The course leverages the very powerful Apache CXF Web Services engine to develop and deliver JAX-RS (REST) and JAX-WS (SOAP) web services and clients. You'll learn how to build contract-, or WSDL-, first SOAP services, how to extract web services from legacy applications & monoliths, and a complete course on building modern RESTful webservices. Bharath challenges the learner with quizzes on key concepts and assignments throughout the course.

Leveraging Spring Boot as a starting place, the learner is shown how web services with Apache CXF can be built on current LTS OpenJDKs, including versions 8, 11, and 15.
Binary file removed restwebservices/.DS_Store
Binary file not shown.
Binary file removed restwebservices/passengerservice/.DS_Store
Binary file not shown.
18 changes: 12 additions & 6 deletions restwebservices/passengerservice/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
Expand All @@ -8,6 +7,7 @@ target/
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
Expand All @@ -16,9 +16,15 @@ target/
*.ipr

### NetBeans ###
nbproject/private/
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed restwebservices/passengerservice/src/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file removed restwebservices/productcrud/.DS_Store
Binary file not shown.
13 changes: 9 additions & 4 deletions restwebservices/productcrud/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/target/
!.mvn/wrapper/maven-wrapper.jar
target/

### STS ###
.apt_generated
Expand All @@ -18,8 +17,14 @@

### NetBeans ###
/nbproject/private/
/build/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
/.nb-gradle/
build/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed restwebservices/productcrud/src/.DS_Store
Binary file not shown.
Binary file removed restwebservices/productcrud/src/main/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed restwebservices/restattachments/.DS_Store
Binary file not shown.
18 changes: 12 additions & 6 deletions restwebservices/restattachments/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
Expand All @@ -8,6 +7,7 @@ target/
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
Expand All @@ -16,9 +16,15 @@ target/
*.ipr

### NetBeans ###
nbproject/private/
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed restwebservices/restattachments/src/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed restwebservices/restattachmentsclient/.DS_Store
Binary file not shown.
18 changes: 12 additions & 6 deletions restwebservices/restattachmentsclient/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
Expand All @@ -8,6 +7,7 @@ target/
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
Expand All @@ -16,9 +16,15 @@ target/
*.ipr

### NetBeans ###
nbproject/private/
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed restwebservices/restws/.DS_Store
Binary file not shown.
18 changes: 12 additions & 6 deletions restwebservices/restws/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
Expand All @@ -8,6 +7,7 @@ target/
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
Expand All @@ -16,9 +16,15 @@ target/
*.ipr

### NetBeans ###
nbproject/private/
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed restwebservices/restws/src/.DS_Store
Binary file not shown.
Binary file removed restwebservices/restws/src/main/.DS_Store
Binary file not shown.
Binary file removed restwebservices/restws/src/main/java/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed restwebservices/restwsasync/.DS_Store
Binary file not shown.
18 changes: 12 additions & 6 deletions restwebservices/restwsasync/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
Expand All @@ -8,6 +7,7 @@ target/
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
Expand All @@ -16,9 +16,15 @@ target/
*.ipr

### NetBeans ###
nbproject/private/
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed restwebservices/restwsasync/src/.DS_Store
Binary file not shown.
Binary file removed restwebservices/restwsasync/src/main/.DS_Store
Binary file not shown.
Binary file removed restwebservices/restwsasyncclient/.DS_Store
Binary file not shown.
18 changes: 12 additions & 6 deletions restwebservices/restwsasyncclient/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
Expand All @@ -8,6 +7,7 @@ target/
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
Expand All @@ -16,9 +16,15 @@ target/
*.ipr

### NetBeans ###
nbproject/private/
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed restwebservices/restwsclient/.DS_Store
Binary file not shown.
18 changes: 12 additions & 6 deletions restwebservices/restwsclient/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
Expand All @@ -8,6 +7,7 @@ target/
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
Expand All @@ -16,9 +16,15 @@ target/
*.ipr

### NetBeans ###
nbproject/private/
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed restwebservices/restwsclient/src/.DS_Store
Binary file not shown.
Binary file removed restwebservices/restwsclient/src/main/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed restwebservices/springsecurity/.DS_Store
Binary file not shown.
13 changes: 9 additions & 4 deletions restwebservices/springsecurity/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/target/
!.mvn/wrapper/maven-wrapper.jar
target/

### STS ###
.apt_generated
Expand All @@ -18,8 +17,14 @@

### NetBeans ###
/nbproject/private/
/build/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
/.nb-gradle/
build/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed restwebservices/springsecurity/src/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file removed soapwebservices/.DS_Store
Binary file not shown.
Binary file removed soapwebservices/hellowebservice/.DS_Store
Binary file not shown.
18 changes: 12 additions & 6 deletions soapwebservices/hellowebservice/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
Expand All @@ -8,6 +7,7 @@ target/
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
Expand All @@ -16,9 +16,15 @@ target/
*.ipr

### NetBeans ###
nbproject/private/
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
nbbuild/
dist/
nbdist/
.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
Binary file not shown.

This file was deleted.

Binary file removed soapwebservices/javafirstws/.DS_Store
Binary file not shown.
Loading