Skip to content
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

0.4.4 #9

Merged
merged 3 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
36 changes: 0 additions & 36 deletions .github/workflows/maven-publish.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check w/o SNAPSHOT when "bump version"
if: ${{ contains(github.event.head_commit.message, 'bump version') }}
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![GitHub Packages](https://github.com/umjammer/vavi-commons-sandbox/actions/workflows/maven-publish.yml/badge.svg)](https://github.com/umjammer?tab=packages&repo_name=vavi-net-auth)
[![Release](https://jitpack.io/v/umjammer/vavi-commons-sandbox.svg)](https://jitpack.io/#umjammer/vavi-commons-sandbox)
[![Java CI](https://github.com/umjammer/vavi-commons-sandbox/actions/workflows/maven.yml/badge.svg)](https://github.com/umjammer/vavi-commons-sandbox/actions/workflows/maven.yml)
[![CodeQL](https://github.com/umjammer/vavi-commons-sandbox/actions/workflows/codeql.yml/badge.svg)](https://github.com/umjammer/vavi-commons-sandbox/actions/workflows/codeql.yml)
![Java](https://img.shields.io/badge/Java-17-b07219)
Expand Down Expand Up @@ -49,7 +49,13 @@ to be deprecated

wip

### TODO
## Install

* [maven](https://github.com/umjammer?tab=packages&repo_name=vavi-commons-sandbox)
* this project uses github packages. add a personal access token to `~/.m2/settings.xml`
* see https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry

## TODO

* regex find group iteration
* mime types
Expand Down
17 changes: 3 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>vavi</groupId>
<artifactId>vavi-commons-sandbox</artifactId>
<version>0.4.3</version>
<version>0.4.4</version>

<name>Vavi Commons Sandbox API</name>
<organization>
Expand All @@ -23,13 +23,6 @@
<url>https://github.com/umjammer/vavi-commons-sandbox/issues</url>
</issueManagement>

<distributionManagement>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/umjammer/vavi-commons-sandbox</url>
</repository>
</distributionManagement>

<profiles>
<profile>
<id>local (not on CI)</id>
Expand Down Expand Up @@ -156,10 +149,6 @@
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/umjammer/*</url>
</repository>
</repositories>

<dependencyManagement>
Expand Down Expand Up @@ -224,9 +213,9 @@
</dependency>

<dependency>
<groupId>vavi</groupId>
<groupId>com.github.umjammer.vavi-net-auth</groupId> <!-- vavi / com.github.umjammer.vavi-net-auth -->
<artifactId>vavi-net-auth-google</artifactId>
<version>0.1.8</version>
<version>0.1.9</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/vavix/util/ClassUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* @version 0.00 020517 nsano initial version <br>
* 0.01 040627 nsano add getWrapperClass <br>
*/
@Deprecated
public final class ClassUtil {

/** Cannot access. */
Expand Down
Loading