Skip to content

Commit

Permalink
[Issue #79] Migrating to OpenDocument-app organization
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Aug 26, 2024
1 parent 45fdb68 commit f2a2c1c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# [wvWare](http://wvware.sourceforge.net/) (wvHtml) library port for Android

[![build](https://github.com/ViliusSutkus89/wvWare-Android/actions/workflows/build.yml/badge.svg)](https://github.com/ViliusSutkus89/wvWare-Android/actions/workflows/build.yml)
[![Maven Central](https://img.shields.io/maven-central/v/com.viliussutkus89/wvware-android.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:com.viliussutkus89%20AND%20a:wvware-android)
[![build](https://github.com/app.opendocument/wvWare-Android/actions/workflows/build.yml/badge.svg)](https://github.com/ViliusSutkus89/wvWare-Android/actions/workflows/build.yml)
[![Maven Central](https://img.shields.io/maven-central/v/app.opendocument/wvware-android.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:com.viliussutkus89%20AND%20a:wvware-android)

### Used by:
- [Documenter](https://github.com/ViliusSutkus89/Documenter) on [Google Play](https://play.google.com/store/apps/details?id=com.viliussutkus89.documenter) - reference application for pdf2htmlEX-Android and wvWare-Android libraries.
Expand All @@ -20,7 +20,7 @@ Limited to wvHtml.
wvWare-Android is distributed through MavenCentral. Add a dependency in `build.gradle`:
```gradle
dependencies {
implementation 'com.viliussutkus89:wvware-android:1.2.10'
implementation 'app.opendocument:wvware-android:1.2.10'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ task clean(type: Delete) {
delete new File(projectDir, "wvWare/.cxx")
}

group = 'com.viliussutkus89'
group = 'app.opendocument'
version = '1.2.11'

nexusPublishing {
Expand Down
4 changes: 2 additions & 2 deletions ci-scripts/updateDownstreamVersion
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
# MIT License
#
# Copyright (c) 2021 - 2022 ViliusSutkus89.com
# Copyright (c) 2021 - 2022, 2024 ViliusSutkus89.com
#
# https://github.com/ViliusSutkus89/Sample_Android_Library-MavenCentral-Instrumented_Tests
# ci-scripts/updateDownstreamVersions - v2.0.0
Expand Down Expand Up @@ -52,7 +52,7 @@ my $versionUpdater = fileUpdater->new({ rootDirectory => $rootDirectory });

$versionUpdater->update('README.md', sub {
$_ = shift;
s/^(\s+implementation\s+['"]com\.viliussutkus89\:wvware-android\:)[\d\.]+(['"])$/${1}${version}${2}/;
s/^(\s+implementation\s+['"]app\.opendocument\:wvware-android\:)[\d\.]+(['"])$/${1}${version}${2}/;
return $_;
});

Expand Down

0 comments on commit f2a2c1c

Please sign in to comment.