Skip to main content

Questions tagged [maven]

Maven is a build automation tool used primarily for Java projects. It can also be used with other languages.

2 votes
1 answer
592 views

Simple game of Chutes and Ladders

I recently made a new project for Chutes and Ladders (the Hasbro version of Snakes and ladders) and it is located here: https://github.com/vchittar/ChutesAndLadders BoardLogic (implements an interface)...
smarty_pants's user avatar
1 vote
3 answers
372 views

Spring boot application web service

It's a web application. It should provide a service for entering data. Data is then evaluated and uses itself another service. It was part of an interview process where I was given that task to solve....
kodingreview's user avatar
7 votes
1 answer
1k views

SQLite In-memory Database That Inserts Data Read From a CSV File

I wrote this program to make a simple in-memory database using SQLite and JDBC. Requirements I was trying to accomplish are below. It should consume a CSV file, parse the data, and insert it into the ...
Jordan's user avatar
  • 73
2 votes
0 answers
359 views

Unit/Integration Tests for Maven plugin that creates Skipper packages

I am writing an extension to a maven mojo (spring-cloud-skipper-maven-plugin) and I am now writing tests that interact with a skipper server. However, getting the ...
Μenelaοs's user avatar
2 votes
1 answer
175 views

Implementation of Maven version POJO in Java

"Version" a common notion in software, which helps to unique states of software development. I implemented a simple POJO for "version" in Java. I would like to have your review about this code. I'd ...
Mincong Huang's user avatar
3 votes
1 answer
4k views

Spring Boot RESTful service as a backend and reactjs as frontend app

let me please know what could be improved here. I've developed backend + frontend solution for the following task: Back-end: Create a simple Spring Web MVC application and manage dependencies ...
Dzmitry Hubin's user avatar
3 votes
1 answer
194 views

Using Maven Profiles to divide functionality

We have a Spring Boot parser application, that supports a bunch of formats. We need to divide this Parser application into several types. Each such type is simply defined by the set of formats ...
Sam's user avatar
  • 179
3 votes
0 answers
1k views

Excluding resources from maven dependencies while exporting project to jar

I have two local maven projects A, and B. B is dependent on ...
Sayan Pal's user avatar
  • 149
2 votes
1 answer
1k views

Minimum acceptable POM

I've been learning how to use Maven, and in order to understand it better, I want to try and write the smallest possible pom.xml file, while being as modern as ...
Maximilien Mellen's user avatar
2 votes
0 answers
67 views

'Tag' packages and make them discoverable

We have another team who is going to expose class packages for use to scan and pickup details from. If they should add some new packages or rename old ones I don't want to have to recode a thing. I am ...
Christian Bongiorno's user avatar
13 votes
3 answers
6k views

Match Simple Sentence or Partial Sentence

Description Match a Simple Sentence or a partial sentence Suitable for matching People Names (to some extent) Product Titles (to some extent) Correct use of apostrophe (to some extent) Input/Result ...
JaDogg's user avatar
  • 4,561
7 votes
1 answer
186 views

Coverage processing on multiple Java projects with gmake

As part of my data collection, I have to run multiple kinds of coverage processing on multiple Java projects. Below is my main Makefile intended only for ...
Rahul Gopinath's user avatar
29 votes
2 answers
66k views

JAXB XJC code generation - adding @XmlRootElement and Joda DateTime

Here's an interesting scenario that I encountered the other day. I did eventually reach a solution on my own. However, I'd welcome any comments and better approaches. The requirements I want to ...
Gary's user avatar
  • 391