Skip to content

Commit 967d694

Browse files
Ranga Rao KaranamRanga Rao Karanam
Ranga Rao Karanam
authored and
Ranga Rao Karanam
committed
Cleaning Up
1 parent 59b6ed3 commit 967d694

7 files changed

+28
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ Most important qualities I look for in an Architect are
7474
- Great Communication : Communication in the widest sense. Communicating the technical aspects to the stakeholders, project management, software developers, testers, etc.
7575

7676
## SOAP Web Services
77-
![SOAP Web Services](SOAPWebServices.png)
77+
![SOAP Web Services](images/SOAPWebServices.png)
7878

7979
## REST Web Services
8080
- PDF https://www.mindmup.com/#m:g10B8KENIDghuHAYmFzM0daOU80SDA
8181

8282
## Distributed Cache
83-
![Distributed Cache](DistributedCache.png)
83+
![Distributed Cache](images/DistributedCache.png)
8484

8585
## Layers
8686
- PDF https://www.mindmup.com/#m:g10B8KENIDghuHAemVIS2RvT1JDOUE
@@ -116,10 +116,10 @@ Listed below are some of the important considerations
116116
# Tools
117117

118118
## Maven Best Practices
119-
![Maven Best Practices](MavenBestPractices.png)
119+
![Maven Best Practices](images/MavenBestPractices.png)
120120

121121
## IDE - Eclipse
122-
![Eclipse](Eclipse.png)
122+
![Eclipse](images/Eclipse.png)
123123

124124
# Practices
125125

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pom.xml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="US-ASCII"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.in28minutes.example</groupId>
6+
<artifactId>java-best-practices</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<name>${project.artifactId}</name>
9+
<build>
10+
<plugins>
11+
<plugin>
12+
<groupId>org.apache.maven.plugins</groupId>
13+
<artifactId>maven-compiler-plugin</artifactId>
14+
<version>3.2</version>
15+
<configuration>
16+
<verbose>true</verbose>
17+
<source>1.8</source>
18+
<target>1.8</target>
19+
<showWarnings>true</showWarnings>
20+
</configuration>
21+
</plugin>
22+
</plugins>
23+
</build>
24+
</project>

0 commit comments

Comments
 (0)