-
Notifications
You must be signed in to change notification settings - Fork 80
Prepare for next development iteration 21.4.0-SNAPSHOT #2322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 21.x
Are you sure you want to change the base?
Changes from all commits
a61143f
07816a6
e11c4ea
fd23139
c120e5a
e56b895
8675956
58a8952
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,12 @@ | |
~ and is available at https://www.eclipse.org/legal/epl-v10.html | ||
--> | ||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>io.lighty.applications.rcgnmi</groupId> | ||
<artifactId>lighty-rcgnmi-app-docker</artifactId> | ||
<version>21.3.0-SNAPSHOT</version> | ||
<version>21.4.0-SNAPSHOT</version> | ||
|
||
<properties> | ||
<image.name>lighty-rcgnmi</image.name> | ||
|
@@ -81,8 +79,7 @@ | |
<phase>prepare-package</phase> | ||
<configuration> | ||
<target> | ||
<unzip src="${basedir}/../lighty-rcgnmi-app/target/${lighty.app.zip}" | ||
dest="${basedir}/target/docker-stage" /> | ||
<unzip src="${basedir}/../lighty-rcgnmi-app/target/${lighty.app.zip}" dest="${basedir}/target/docker-stage" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For better readability and maintainability, it's recommended to keep attributes of XML tags on separate lines, especially for long lines like this one. This makes the code easier to read and understand.
|
||
</target> | ||
</configuration> | ||
<goals> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
<groupId>io.lighty.applications.rnc</groupId> | ||
<artifactId>lighty-rnc-app-docker</artifactId> | ||
<version>21.3.0-SNAPSHOT</version> | ||
<version>21.4.0-SNAPSHOT</version> | ||
|
||
<properties> | ||
<image.name>lighty-rnc</image.name> | ||
|
@@ -78,8 +78,7 @@ | |
<phase>prepare-package</phase> | ||
<configuration> | ||
<target> | ||
<unzip src="${basedir}/../lighty-rnc-app/target/${lighty.app.zip}" | ||
dest="${basedir}/target/docker-stage" /> | ||
<unzip src="${basedir}/../lighty-rnc-app/target/${lighty.app.zip}" dest="${basedir}/target/docker-stage" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For better readability and maintainability, it's recommended to keep attributes of XML tags on separate lines, especially for long lines like this one. This makes the code easier to read and understand.
|
||
</target> | ||
</configuration> | ||
<goals> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For better readability, it's good practice to have each attribute of an XML tag on a new line, especially when there are multiple attributes. This makes the POM file easier to read and maintain.