Skip to content

Commit

Permalink
change module name to com.esaulpaugh.headlong;
Browse files Browse the repository at this point in the history
change Created-By;
  • Loading branch information
esaulpaugh committed Sep 14, 2024
1 parent e37c898 commit 0a63986
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ jar {
attributes(
"Implementation-Title": project.name,
"Implementation-Version": project.version,
"Automatic-Module-Name": project.name,
"Automatic-Module-Name": "com.esaulpaugh.headlong",
"Created-By": "Gradle",
"Build-Date": todayUTC() // DateTimeFormatter.ofPattern("MMMM d yyyy", Locale.ENGLISH).withZone(ZoneOffset.UTC).format(Instant.now())
)
}
Expand Down
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
// attributes(
// "Implementation-Title" to project.name,
// "Implementation-Version" to project.version,
// "Automatic-Module-Name" to project.name,
// "Automatic-Module-Name" to "com.esaulpaugh.headlong",
// "Created-By" to "Gradle KTS"
// "Build-Date" to dateFormatter.format(Instant.now())
// )
// }
Expand Down
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
<manifest>
<attribute name = "Implementation-Title" value = "${project.name}"/>
<attribute name = "Implementation-Version" value = "${project.version}"/>
<attribute name= "Automatic-Module-Name" value="${project.name}"/>
<attribute name= "Created-By" value="com.esaulpaugh"/>
<attribute name= "Automatic-Module-Name" value="com.esaulpaugh.headlong"/>
<attribute name= "Created-By" value="Apache Ant"/>
</manifest>
</jar>
</target>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@
<manifestEntries>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Created-By>${project.groupId}</Created-By>
<Automatic-Module-Name>com.esaulpaugh.headlong</Automatic-Module-Name>
<Created-By>Apache Maven</Created-By>
<!--suppress UnresolvedMavenProperty -->
<Build-Tool>${maven.build.version}</Build-Tool>
<Build-Date>${maven.build.timestamp}</Build-Date>
<Automatic-Module-Name>${project.name}</Automatic-Module-Name>
</manifestEntries>
<manifest>
<addDefaultEntries>false</addDefaultEntries>
Expand Down

0 comments on commit 0a63986

Please sign in to comment.