Skip to content

Commit 027e4e4

Browse files
committed
Merge branch 'pre-release-dsa-dev' of https://github.com/abhinay5993/DSA_Java8ProblemSolving
2 parents 3495de6 + 8762e4e commit 027e4e4

File tree

7 files changed

+165
-0
lines changed

7 files changed

+165
-0
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Eclipse
2+
.classpath
3+
.project
4+
.settings/
5+
test-output/
6+
7+
# Intellij
8+
.idea/
9+
*.iml
10+
*.iws
11+
12+
# Mac
13+
.DS_Store
14+
15+
# Maven
16+
log/
17+
target/

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# DSA Problem Solving Solutions
2+
3+
This project is used as the part of data structure & algorithms problem solvings solutions , approaches for DSA & Java lovers!!.
4+
5+
## The problem domain
6+
7+
The source code will followed in Java-8 & above version of Java.
8+
9+
## Starting a tutorial
10+
11+
Feel free to review the code & add your sessions, feedback comments.
12+
13+
Will be happy! to discuss , brain brainstorming the examples.
14+
15+
Thanks!! .. Happy Coding .. Abhinay..

pom.xml

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<groupId>com.java8dsaproblems</groupId>
9+
<artifactId>java8dsa_problemSolutions</artifactId>
10+
<version>0.0.1-SNAPSHOT</version>
11+
<name>java8dsa_problemSolutions</name>
12+
<packaging>jar</packaging>
13+
<url>https://github.com/abhinay5993/DSA_Java8ProblemSolving</url>
14+
15+
<distributionManagement>
16+
<repository>
17+
<id>github</id>
18+
<name>GitHub abhinay5993 DSA Problem Solving with Java8</name>
19+
<url>https://maven.pkg.github.com/abhinay5993/DSA_Java8ProblemSolving</url>
20+
</repository>
21+
</distributionManagement>
22+
23+
<developers>
24+
<developer>
25+
<name>abhinay5993</name>
26+
<email>abhinaylunawat5993@gmail.com</email>
27+
<organizationUrl>https://github.com/abhinay5993/DSA_Java8ProblemSolving</organizationUrl>
28+
</developer>
29+
</developers>
30+
31+
<scm>
32+
<connection>scm:git:git://github.com/abhinay5993/DSA_Java8ProblemSolving.git</connection>
33+
<developerConnection>scm:git:https://github.com/abhinay5993/DSA_Java8ProblemSolving.git</developerConnection>
34+
<url>https://github.com/abhinay5993/DSA_Java8ProblemSolving</url>
35+
<tag>DSA_with_Java8</tag>
36+
</scm>
37+
38+
<properties>
39+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40+
<maven.compiler.source>21</maven.compiler.source>
41+
<maven.compiler.target>21</maven.compiler.target>
42+
</properties>
43+
44+
<dependencies>
45+
<dependency>
46+
<groupId>org.testng</groupId>
47+
<artifactId>testng</artifactId>
48+
<version>7.8.0</version>
49+
</dependency>
50+
</dependencies>
51+
52+
<build>
53+
<pluginManagement>
54+
<plugins>
55+
<plugin>
56+
<groupId>org.apache.maven.plugins</groupId>
57+
<artifactId>maven-plugin-plugin</artifactId>
58+
<version>3.6.0</version>
59+
<configuration>
60+
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
61+
</configuration>
62+
</plugin>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-site-plugin</artifactId>
66+
<version>3.9.1</version>
67+
</plugin>
68+
</plugins>
69+
</pluginManagement>
70+
<plugins>
71+
<plugin>
72+
<artifactId>maven-compiler-plugin</artifactId>
73+
<version>3.8.1</version>
74+
<configuration>
75+
<source>21</source>
76+
<target>21</target>
77+
<release>21</release>
78+
</configuration>
79+
</plugin>
80+
<plugin>
81+
<groupId>org.apache.maven.plugins</groupId>
82+
<artifactId>maven-surefire-plugin</artifactId>
83+
<version>2.22.1</version>
84+
<configuration>
85+
<includes>
86+
<include>**/*.java</include>
87+
<include>**/*Tests.java</include>
88+
</includes>
89+
<suiteXmlFiles>
90+
<defaultSuiteXmlFile>src/test/resources/testSuites/*.xml</defaultSuiteXmlFile>
91+
</suiteXmlFiles>
92+
</configuration>
93+
</plugin>
94+
<plugin>
95+
<groupId>org.apache.maven.plugins</groupId>
96+
<artifactId>maven-release-plugin</artifactId>
97+
<version>3.0.0-M1</version>
98+
</plugin>
99+
</plugins>
100+
</build>
101+
</project>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.udemy.dsapart1.recursion;
2+
3+
/**
4+
* Hello world!
5+
*
6+
*/
7+
public class App
8+
{
9+
public static void main( String[] args )
10+
{
11+
System.out.println( "Hello World!" );
12+
}
13+
}

src/main/java/readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Application classes go here
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package com.dsaproblem.solutions;
2+
import static org.testng.Assert.assertTrue;
3+
import org.testng.annotations.Test;
4+
5+
/**
6+
* Unit test for simple App.
7+
*/
8+
public class AppTest {
9+
/**
10+
* Rigorous Test :-)
11+
*/
12+
@Test
13+
public void shouldAnswerWithTrue() {
14+
System.out.println("\nI am running 1st TestNg unit tests.");
15+
assertTrue(true);
16+
}
17+
}

src/test/java/readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Unit tests go here

0 commit comments

Comments
 (0)