Skip to content

Commit 2febe87

Browse files
Initial artifacts with minimal testing (#2)
* Initial Maven project commit * Changed repository and project in badges * Added test cases for new coding challenges and scenarios * Fixes to several failed test cases and implemented new problem challenges. Closes #1 * Maven build and code-coverage configuration with `JaCoCo` * Added default Maven GitHub Action workflow * Lint fixes for workflows/maven.yml
1 parent e4c1a49 commit 2febe87

File tree

75 files changed

+6089
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+6089
-0
lines changed

.github/workflows/maven.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3+
4+
# This workflow uses actions that are not certified by GitHub.
5+
# They are provided by a third-party and are governed by
6+
# separate terms of service, privacy policy, and support
7+
# documentation.
8+
9+
name: Java CI with Maven
10+
11+
on:
12+
push:
13+
branches: [ "main" ]
14+
15+
jobs:
16+
build:
17+
18+
runs-on: ubuntu-latest
19+
permissions:
20+
contents: read
21+
packages: read
22+
statuses: write # To report GitHub Actions status checks
23+
actions: read # Needed for detection of GitHub Actions environment.
24+
id-token: write # Needed for provenance signing and ID.
25+
26+
27+
steps:
28+
- uses: actions/checkout@v4
29+
- name: Set up JDK 21
30+
uses: actions/setup-java@v4
31+
with:
32+
java-version: '21'
33+
distribution: 'temurin'
34+
cache: maven
35+
36+
- name: Build with Maven
37+
run: mvn -B clean verify --file pom.xml
38+
39+
- name: Run Tests and Code-Coverage
40+
run: mvn jacoco:prepare-agent clean test jacoco:report --file pom.xml

README.md

+49
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,51 @@
11
# QuickStart-Coding-Challenges
2+
23
Quickstart Coding Challenges
4+
5+
6+
[![Java CI with Maven](https://github.com/shortthirdman/QuickStart-Coding-Challenges/actions/workflows/maven.yml/badge.svg?event=workflow_dispatch)](https://github.com/shortthirdman/QuickStart-Coding-Challenges/actions/workflows/maven.yml)
7+
8+
![GitHub commit activity](https://img.shields.io/github/commit-activity/w/shortthirdman/QuickStart-Coding-Challenges) ![GitHub](https://img.shields.io/github/license/shortthirdman/QuickStart-Coding-Challenges) ![GitHub last commit](https://img.shields.io/github/last-commit/shortthirdman/QuickStart-Coding-Challenges)
9+
10+
All Java solutions for various challenges presented during interviews for software development positions.
11+
12+
- [CodeSignal](https://app.codesignal.com)
13+
- [LeetCode](https://leetcode.com)
14+
- [HackerRank](https://hackerrank.com)
15+
- [Codility](https://app.codility.com)
16+
17+
## Requirements
18+
19+
- Apache Maven 3.9.x
20+
- Java 21
21+
- JetBrains IntelliJ IDEA (Community/Ultimate)
22+
23+
24+
## Run, Test and Code Coverage
25+
26+
`mvn clean install test`
27+
28+
`mvn jacoco:prepare-agent clean test jacoco:report`
29+
30+
## Contributing
31+
32+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
33+
[![first-timers-only](https://img.shields.io/badge/first--timers--only-friendly-blue.svg?style=flat-square)](https://www.firsttimersonly.com/)
34+
35+
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
36+
37+
Please make sure to update tests as appropriate.
38+
39+
**Working on your first Pull Request?** You can learn how from this *free* series [How to Contribute to an Open Source Project on GitHub](https://kcd.im/pull-request)
40+
41+
## References
42+
43+
- [Running GitHub Actions Locally: A Complete Guide for Windows, Mac, and Linux Users](https://medium.com/debasishkumardas5/running-github-actions-locally-a-complete-guide-for-windows-mac-and-linux-users-34c45999c7cd)
44+
45+
- [How to test GitHub Actions locally?](https://www.browserstack.com/guide/test-github-actions-locally)
46+
47+
- [Getting "Skipping JaCoCo execution due to missing execution data file" upon executing JaCoCo](https://stackoverflow.com/questions/18107375/getting-skipping-jacoco-execution-due-to-missing-execution-data-file-upon-exec)
48+
49+
## License
50+
51+
[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)

pom.xml

+260
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,260 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.shortthirdman</groupId>
8+
<artifactId>quickstart-challenges</artifactId>
9+
<version>1.0.0-SNAPSHOT</version>
10+
<name>Quickstart-Challenges</name>
11+
<url>http://www.example.com</url>
12+
13+
<properties>
14+
<java.version>21</java.version>
15+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
<project.reporting.outputDirectory>target/reports</project.reporting.outputDirectory>
17+
<maven.compiler.source>${java.version}</maven.compiler.source>
18+
<maven.compiler.target>${java.version}</maven.compiler.target>
19+
<junit-jupiter.version>5.10.2</junit-jupiter.version>
20+
<commons-lang3.version>3.14.0</commons-lang3.version>
21+
<lombok.version>1.18.32</lombok.version>
22+
<gson.version>2.10.1</gson.version>
23+
<assertj-core.version>3.25.3</assertj-core.version>
24+
<jacoco.version>0.8.9</jacoco.version>
25+
</properties>
26+
27+
<dependencies>
28+
<dependency>
29+
<groupId>org.apache.commons</groupId>
30+
<artifactId>commons-lang3</artifactId>
31+
<version>${commons-lang3.version}</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>commons-lang</groupId>
35+
<artifactId>commons-lang</artifactId>
36+
<version>2.6</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>com.google.code.gson</groupId>
40+
<artifactId>gson</artifactId>
41+
<version>${gson.version}</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.projectlombok</groupId>
45+
<artifactId>lombok</artifactId>
46+
<version>${lombok.version}</version>
47+
<scope>provided</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.projectlombok</groupId>
51+
<artifactId>lombok-utils</artifactId>
52+
<version>1.18.12</version>
53+
</dependency>
54+
55+
<dependency>
56+
<groupId>org.assertj</groupId>
57+
<artifactId>assertj-core</artifactId>
58+
<version>${assertj-core.version}</version>
59+
<scope>test</scope>
60+
</dependency>
61+
62+
<dependency>
63+
<groupId>org.junit.jupiter</groupId>
64+
<artifactId>junit-jupiter-api</artifactId>
65+
<scope>test</scope>
66+
</dependency>
67+
<dependency>
68+
<groupId>org.junit.jupiter</groupId>
69+
<artifactId>junit-jupiter-engine</artifactId>
70+
<scope>test</scope>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.junit.jupiter</groupId>
74+
<artifactId>junit-jupiter-params</artifactId>
75+
<scope>test</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.junit.platform</groupId>
79+
<artifactId>junit-platform-runner</artifactId>
80+
<version>1.10.2</version>
81+
<scope>test</scope>
82+
</dependency>
83+
<dependency>
84+
<groupId>org.junit.platform</groupId>
85+
<artifactId>junit-platform-suite-engine</artifactId>
86+
<version>1.10.2</version>
87+
<scope>test</scope>
88+
</dependency>
89+
</dependencies>
90+
91+
<dependencyManagement>
92+
<dependencies>
93+
<dependency>
94+
<groupId>org.junit</groupId>
95+
<artifactId>junit-bom</artifactId>
96+
<version>${junit-jupiter.version}</version>
97+
<scope>import</scope>
98+
<type>pom</type>
99+
</dependency>
100+
</dependencies>
101+
</dependencyManagement>
102+
103+
<profiles>
104+
<profile>
105+
<id>release</id>
106+
<activation>
107+
<activeByDefault>false</activeByDefault>
108+
</activation>
109+
<build>
110+
<plugins>
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-source-plugin</artifactId>
114+
<version>3.3.1</version>
115+
<configuration>
116+
<outputDirectory>${basedir}/target</outputDirectory>
117+
<finalName>${project.artifactId}-${project.version}</finalName>
118+
<attach>true</attach>
119+
</configuration>
120+
<executions>
121+
<execution>
122+
<id>attach-sources</id>
123+
<phase>package</phase>
124+
<goals>
125+
<goal>jar-no-fork</goal>
126+
<goal>test-jar-no-fork</goal>
127+
</goals>
128+
</execution>
129+
</executions>
130+
</plugin>
131+
</plugins>
132+
</build>
133+
</profile>
134+
</profiles>
135+
136+
<build>
137+
<pluginManagement>
138+
<plugins>
139+
<plugin>
140+
<artifactId>maven-compiler-plugin</artifactId>
141+
<version>3.13.0</version>
142+
<configuration>
143+
<source>${java.version}</source>
144+
<target>${java.version}</target>
145+
<fork>true</fork>
146+
<encoding>${project.build.sourceEncoding}</encoding>
147+
</configuration>
148+
</plugin>
149+
<plugin>
150+
<groupId>org.apache.maven.plugins</groupId>
151+
<artifactId>maven-help-plugin</artifactId>
152+
<version>3.0.1</version>
153+
<executions>
154+
<execution>
155+
<id>show-profiles</id>
156+
<phase>compile</phase>
157+
<goals>
158+
<goal>active-profiles</goal>
159+
</goals>
160+
</execution>
161+
</executions>
162+
</plugin>
163+
<plugin>
164+
<artifactId>maven-surefire-plugin</artifactId>
165+
<version>2.22.2</version>
166+
<configuration>
167+
<encoding>${project.build.sourceEncoding}</encoding>
168+
<reportFormat>brief</reportFormat>
169+
<printSummary>true</printSummary>
170+
<properties>
171+
<configurationParameters>
172+
junit.jupiter.extensions.autodetection.enabled = true
173+
junit.jupiter.testinstance.lifecycle.default = per_class
174+
junit.jupiter.execution.parallel.enabled = true
175+
</configurationParameters>
176+
</properties>
177+
</configuration>
178+
</plugin>
179+
<plugin>
180+
<groupId>org.apache.maven.plugins</groupId>
181+
<artifactId>maven-failsafe-plugin</artifactId>
182+
<version>3.5.0</version>
183+
<configuration>
184+
<threadCount>10</threadCount>
185+
</configuration>
186+
</plugin>
187+
<plugin>
188+
<groupId>org.jacoco</groupId>
189+
<artifactId>jacoco-maven-plugin</artifactId>
190+
<version>${jacoco.version}</version>
191+
<configuration>
192+
<!-- <dataFile>${project.build.directory}/jacoco.exec</dataFile>-->
193+
<!-- <outputDirectory>${project.reporting.outputDirectory}/jacocoHtml</outputDirectory>-->
194+
<title>${project.name} ${project.version}</title>
195+
</configuration>
196+
<executions>
197+
<execution>
198+
<id>coverage-initialize</id>
199+
<goals>
200+
<goal>prepare-agent</goal>
201+
</goals>
202+
<phase>pre-clean</phase>
203+
</execution>
204+
<execution>
205+
<id>coverage-report</id>
206+
<phase>post-integration-test</phase>
207+
<goals>
208+
<goal>report</goal>
209+
</goals>
210+
</execution>
211+
<execution>
212+
<id>coverage-check</id>
213+
<goals>
214+
<goal>check</goal>
215+
</goals>
216+
<phase>test</phase>
217+
<configuration>
218+
<rules>
219+
<rule>
220+
<element>PACKAGE</element>
221+
<excludes>
222+
<exclude>com.shortthirdman.quickstart.common.*</exclude>
223+
</excludes>
224+
<limits>
225+
<limit>
226+
<counter>LINE</counter>
227+
<value>COVEREDRATIO</value>
228+
<minimum>0.6</minimum>
229+
</limit>
230+
<limit>
231+
<counter>INSTRUCTION</counter>
232+
<value>COVEREDRATIO</value>
233+
<minimum>0.6</minimum>
234+
</limit>
235+
</limits>
236+
</rule>
237+
<rule>
238+
<element>BUNDLE</element>
239+
<limits>
240+
<limit>
241+
<counter>INSTRUCTION</counter>
242+
<value>COVEREDRATIO</value>
243+
<minimum>0.80</minimum>
244+
</limit>
245+
<limit>
246+
<counter>CLASS</counter>
247+
<value>MISSEDCOUNT</value>
248+
<maximum>1</maximum>
249+
</limit>
250+
</limits>
251+
</rule>
252+
</rules>
253+
</configuration>
254+
</execution>
255+
</executions>
256+
</plugin>
257+
</plugins>
258+
</pluginManagement>
259+
</build>
260+
</project>

0 commit comments

Comments
 (0)