New Upstream Snapshot - golang-github-creekorful-mvnparser

Ready changes

Summary

Merged new upstream version: 1.5.0 (was: 1.4.0).

Resulting package

Built on 2023-02-08T13:01 (took 3m18s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots golang-github-creekorful-mvnparser-dev

Lintian Result

Diff

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
deleted file mode 100644
index 8be6304..0000000
--- a/.github/workflows/ci.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-name: Continuous Integration
-
-on:
-  push:
-    branches:
-      - master
-  pull_request:
-    branches:
-      - '**'
-
-jobs:
-  test:
-    strategy:
-      matrix:
-        go-version: [ 1.14.x, 1.15.x ]
-        platform: [ ubuntu-latest ]
-    name: ${{ matrix.platform }} @ Go ${{ matrix.go-version }}
-    runs-on: ${{ matrix.platform }}
-    steps:
-      - name: Install Go ${{ matrix.go-version }}
-        uses: actions/setup-go@v2.1.3
-        with:
-          go-version: ${{ matrix.go-version }}
-
-      - name: Set environment
-        run: |
-          echo "GOPATH=$(dirname $GITHUB_WORKSPACE)" >> $GITHUB_ENV
-          echo "$(dirname $GITHUB_WORKSPACE)/bin" >> $GITHUB_PATH
-        shell: bash
-
-      - name: Checkout code
-        uses: actions/checkout@v2
-
-      - name: Test
-        run: |
-          go test -v ./...
-
-      - name: Update go report card
-        if: success() && matrix.platform == 'ubuntu-latest'
-        continue-on-error: true
-        uses: creekorful/goreportcard-action@v1.0
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index f72f9db..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,15 +0,0 @@
-# Binaries for programs and plugins
-*.exe
-*.exe~
-*.dll
-*.so
-*.dylib
-
-# Test binary, build with `go test -c`
-*.test
-
-# Output of the go coverage tool, specifically when used with LiteIDE
-*.out
-
-# Jetbrains idea folder
-.idea/
\ No newline at end of file
diff --git a/README.md b/README.md
index 0c740af..7f16a2a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # mvnparser
 
-[![Build Status](https://travis-ci.org/creekorful/mvnparser.svg?branch=master)](https://travis-ci.org/creekorful/mvnparser)
+[![Continuous Integration](https://github.com/creekorful/mvnparser/actions/workflows/ci.yml/badge.svg)](https://github.com/creekorful/mvnparser/actions/workflows/ci.yml)
 [![Go Report Card](https://goreportcard.com/badge/github.com/creekorful/mvnparser)](https://goreportcard.com/report/github.com/creekorful/mvnparser)
 [![Maintainability](https://api.codeclimate.com/v1/badges/ac9fd99e18e6ef2661e3/maintainability)](https://codeclimate.com/github/creekorful/mvnparser/maintainability)
 
@@ -84,4 +84,4 @@ func main() {
     }
 }
 
-```
\ No newline at end of file
+```
diff --git a/debian/changelog b/debian/changelog
index e3585ea..5711ae0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+golang-github-creekorful-mvnparser (1.5.0-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Wed, 08 Feb 2023 12:59:08 -0000
+
 golang-github-creekorful-mvnparser (1.4.0-1) unstable; urgency=medium
 
   * New upstream release.
diff --git a/parser.go b/parser.go
index d824f01..8d4903b 100644
--- a/parser.go
+++ b/parser.go
@@ -49,9 +49,10 @@ type MavenProject struct {
 
 // Represent the parent of the project
 type Parent struct {
-	GroupId    string `xml:"groupId"`
-	ArtifactId string `xml:"artifactId"`
-	Version    string `xml:"version"`
+	GroupId      string `xml:"groupId"`
+	ArtifactId   string `xml:"artifactId"`
+	Version      string `xml:"version"`
+	RelativePath string `xml:"relativePath"`
 }
 
 // Represent a dependency of the project

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details