Skip to content

Commit e1cbd40

Browse files
authored
Merge pull request #1 from umjammer/0.0.2
0.0.2
2 parents 3ae9e8b + 65f30d2 commit e1cbd40

File tree

6 files changed

+15
-93
lines changed

6 files changed

+15
-93
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
45+
uses: github/codeql-action/init@v3
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Set up JDK 17
56-
uses: actions/setup-java@v3
56+
uses: actions/setup-java@v4
5757
with:
5858
java-version: '17'
5959
distribution: 'temurin'
@@ -78,4 +78,4 @@ jobs:
7878
GITHUB_TOKEN: ${{ github.token }}
7979

8080
- name: Perform CodeQL Analysis
81-
uses: github/codeql-action/analyze@v2
81+
uses: github/codeql-action/analyze@v3

.github/workflows/maven-publish.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Check w/o SNAPSHOT when "bump version"
1919
if: ${{ contains(github.event.head_commit.message, 'bump version') }}
2020
run: grep "<version>" pom.xml | head -1 | grep -v SNAPSHOT
2121

2222
- name: Set up JDK 17
23-
uses: actions/setup-java@v3
23+
uses: actions/setup-java@v4
2424
with:
2525
java-version: '17'
2626
distribution: 'temurin'

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
[![GitHub Packages](https://github.com/umjammer/vavi-util-archive-xad/actions/workflows/maven-publish.yml/badge.svg)](https://github.com/umjammer?tab=packages&repo_name=vavi-util-archive-xad)
1+
[![Release](https://jitpack.io/v/umjammer/vavi-util-archive-xad.svg)](https://jitpack.io/#umjammer/vavi-util-archive-xad)
22
[![Java CI](https://github.com/umjammer/vavi-util-archive-xad/actions/workflows/maven.yml/badge.svg)](https://github.com/umjammer/vavi-util-archive-xad/actions/workflows/maven.yml)
33
[![CodeQL](https://github.com/umjammer/vavi-util-archive-xad/actions/workflows/codeql.yml/badge.svg)](https://github.com/umjammer/vavi-util-archive-xad/actions/workflows/codeql-analysis.yml)
44
![Java](https://img.shields.io/badge/Java-17-b07219)
55

66
# vavi-util-archive-xad
77

8-
archiver spi over mac [The Unarchiver XADMaster part](https://github.com/MacPaw/XADMaster) by jna
8+
archiver spi over mac [The Unarchiver XADMaster](https://github.com/MacPaw/XADMaster) via jna
99

1010
## Install
1111

@@ -55,7 +55,7 @@ $ ln -s /opt/homebrew/Cellar/unar/x.xx.x/Frameworks/XADMaster.framework .
5555

5656
## TODO
5757

58-
* frameworks setting for github actions
58+
* ~~frameworks setting for github actions~~
5959
* ~~rename package unar -> xad also~~
6060

6161
## Supported Formats

jitpack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jdk:
2+
- openjdk17

pom.xml

Lines changed: 4 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>vavi</groupId>
77
<artifactId>vavi-util-archive-xad</artifactId>
8-
<version>0.0.1</version>
8+
<version>0.0.2</version>
99

1010
<distributionManagement>
1111
<repository>
@@ -16,7 +16,6 @@
1616

1717
<properties>
1818
<jnaerator.version>0.12</jnaerator.version>
19-
<rococoa.version>0.8.6</rococoa.version>
2019
</properties>
2120

2221
<profiles>
@@ -43,45 +42,6 @@
4342
</plugins>
4443
</build>
4544
</profile>
46-
47-
<profile>
48-
<id>mac</id>
49-
<activation>
50-
<os>
51-
<family>mac</family>
52-
</os>
53-
</activation>
54-
<build>
55-
<plugins>
56-
<plugin>
57-
<groupId>org.apache.maven.plugins</groupId>
58-
<artifactId>maven-dependency-plugin</artifactId>
59-
<version>3.6.0</version>
60-
<executions>
61-
<execution>
62-
<id>copy</id>
63-
<phase>generate-resources</phase>
64-
<goals>
65-
<goal>copy</goal>
66-
</goals>
67-
<configuration>
68-
<artifactItems>
69-
<artifactItem>
70-
<groupId>org.rococoa</groupId>
71-
<artifactId>rococoa-core</artifactId>
72-
<type>dylib</type>
73-
<overWrite>true</overWrite>
74-
<outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
75-
<destFileName>librococoa.dylib</destFileName>
76-
</artifactItem>
77-
</artifactItems>
78-
</configuration>
79-
</execution>
80-
</executions>
81-
</plugin>
82-
</plugins>
83-
</build>
84-
</profile>
8545
</profiles>
8646

8747
<build>
@@ -100,7 +60,7 @@
10060
<version>3.2.2</version>
10161
<configuration>
10262
<argLine>
103-
<!-- on mac confirm ~/Library/Frameworks/{UniversalDetector.framework,XADMaster.framework} are not broken -->
63+
<!-- on mac, confirm ~/Library/Frameworks/{UniversalDetector.framework,XADMaster.framework} are not broken -->
10464
-Djava.util.logging.config.file=${project.build.testOutputDirectory}/logging.properties
10565
</argLine>
10666
<trimStackTrace>false</trimStackTrace>
@@ -114,10 +74,6 @@
11474
<id>jitpack.io</id>
11575
<url>https://jitpack.io</url>
11676
</repository>
117-
<repository>
118-
<id>github</id>
119-
<url>https://maven.pkg.github.com/umjammer/*</url>
120-
</repository>
12177
</repositories>
12278

12379
<dependencyManagement>
@@ -140,9 +96,9 @@
14096
</dependency>
14197

14298
<dependency>
143-
<groupId>org.rococoa</groupId>
99+
<groupId>com.github.umjammer.rococoa</groupId> <!-- org.rococoa / com.github.umjammer.rococoa -->
144100
<artifactId>rococoa-core</artifactId>
145-
<version>${rococoa.version}</version>
101+
<version>0.8.7</version>
146102
</dependency>
147103

148104
<dependency>

0 commit comments

Comments
 (0)