Skip to content

Commit d1373e8

Browse files
committed
Update group-id and links to metafacture.org
1 parent a9c8c84 commit d1373e8

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ deploy:
2929
file: ./metafacture-runner/build/distributions/metafacture-core-*
3030
skip-cleanup: true
3131
on:
32-
repo: culturegraph/metafacture-core
32+
repo: metafacture/metafacture-core
3333
tags: true
3434
condition: "$( git tag --list --format=\"%(objecttype)\" \"$TRAVIS_TAG\" ) == \"tag\""

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
![Metafacture](https://raw.github.com/wiki/culturegraph/metafacture-core/img/metafacture.png)
1+
![Metafacture](https://raw.github.com/wiki/metafacture/metafacture-core/img/metafacture.png)
22

33
Metafacture is a toolkit for processing semi-structured data with a focus on library metadata. It provides a versatile set of tools for reading, writing and transforming data. Metafacture can be used as a stand-alone application or as a Java library in other applications. The name Metafacture is a portmanteau of the words *meta* data and manu*facture*.
44

55
Metafacture includes a large number of modules for operating on semi-structured data. These modules can be combined to build pipelines to perform complex metadata processing tasks. The pipelines can be constructed either in Java code or with the domain-specific language **Flux**. One of the core features of Metafacture is the **Metamorph** module. Metamorph is an xml-based language for specifying transformations of semi-structured data. It can be seamlessly integrated into Java code.
66

7-
At its heart Metafacture is a framework for implementing modules for metadata processing. This makes Metafacture easily extendable with additional modules. The [plugins and tools page](https://github.com/culturegraph/metafacture-core/wiki/Plugins-and-Tools) on the wiki shows supplementary packages and projects which extend Metafacture.
7+
At its heart Metafacture is a framework for implementing modules for metadata processing. This makes Metafacture easily extendable with additional modules. The [plugins and tools page](https://github.com/metafacture/metafacture-core/wiki/Plugins-and-Tools) on the wiki shows supplementary packages and projects which extend Metafacture.
88

9-
Originally, Metafacture was developed as part of the [Culturegraph](http://culturegraph.org) platform but it is developed independently now and used by others, too: [see who uses Metafacture](https://github.com/culturegraph/metafacture-core/wiki/Who-uses-Metafacture).
9+
Originally, Metafacture was developed as part of the [Culturegraph](http://culturegraph.org) platform but it is developed independently now and used by others, too: [see who uses Metafacture](https://github.com/metafacture/metafacture-core/wiki/Who-uses-Metafacture).
1010

1111
# Getting started
1212

@@ -16,7 +16,7 @@ You can either use Metafacture as a stand-alone application or include it as a J
1616

1717
If you are only interested in running Flux scripts without doing any Java programming this is the way to go. The instructions assume that you are using a *nix-like shell.
1818

19-
1. Download the latest distribution package from the [metafacture-core/releases](https://github.com/culturegraph/metafacture-core/releases) page. Make sure that you do download a distribution package and _not_ a source code package (the file name should include *-dist*).
19+
1. Download the latest distribution package from the [metafacture-core/releases](https://github.com/metafacture/metafacture-core/releases) page. Make sure that you do download a distribution package and _not_ a source code package (the file name should include *-dist*).
2020

2121
2. Extract the downloaded archive:
2222
```bash
@@ -33,7 +33,7 @@ If you are only interested in running Flux scripts without doing any Java progra
3333
```
3434
This example will print a number of marc21 records on standard out.
3535

36-
The _examples_ folder contains many more examples which provide a good starting point for learning metafacture. If you have any questions please join our [mailing list](http://lists.dnb.de/mailman/listinfo/metafacture) or use our issue-based discussion forum over at [metafacture-documentation](https://github.com/culturegraph/metafacture-documentation).
36+
The _examples_ folder contains many more examples which provide a good starting point for learning metafacture. If you have any questions please join our [mailing list](http://lists.dnb.de/mailman/listinfo/metafacture) or use our issue-based discussion forum over at [metafacture-documentation](https://github.com/metafacture/metafacture-documentation).
3737

3838

3939
## Using Metafacture as a Java libary
@@ -58,7 +58,7 @@ dependencies {
5858
}
5959
```
6060

61-
Our integration server automatically publishes successful builds of all branches as snapshot versions on [Sonatype OSS Repository](https://oss.sonatype.org/index.html#nexus-search;quick~culturegraph). The version number is derived from the branch name. Snapshot builds from the master branch always have the version "master-SNAPSHOT".
61+
Our integration server automatically publishes successful builds of all branches as snapshot versions on [Sonatype OSS Repository](https://oss.sonatype.org/index.html#nexus-search;quick~metafacture). The version number is derived from the branch name. Snapshot builds from the master branch always have the version "master-SNAPSHOT".
6262

6363
<!--
6464
TODO: Link to getting started tutorial
@@ -71,7 +71,7 @@ Building metafacture-core from source is easy. All you need is git and JDK 8:
7171
1. Clone the metafacture-core repository and change into the directory:
7272

7373
```bash
74-
$ git clone https://github.com/culturegraph/metafacture-core.git
74+
$ git clone https://github.com/metafacture/metafacture-core.git
7575
$ cd metafacture-core
7676
```
7777

@@ -82,7 +82,7 @@ Building metafacture-core from source is easy. All you need is git and JDK 8:
8282
```
8383
on Windows call `gradlew.bat install` instead.
8484

85-
See [Code Quality and Style](https://github.com/culturegraph/metafacture-core/wiki/Code-Quality-and-Style) on the wiki for further information on the sources.
85+
See [Code Quality and Style](https://github.com/metafacture/metafacture-core/wiki/Code-Quality-and-Style) on the wiki for further information on the sources.
8686

8787
<!--
8888
TODO: Include a link to a page which explains how to write plugins

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ plugins {
2525
ext.scmInfo = getScmInfo()
2626

2727
allprojects {
28-
group = 'org.culturegraph'
28+
group = 'org.metafacture'
2929
version = scmInfo.version
3030
ext.mavenName = null
3131
}
@@ -117,18 +117,18 @@ subprojects {
117117
}
118118
}
119119
scm {
120-
connection 'scm:git:https://github.com/culturegraph/metafacture-core.git'
121-
developerConnection 'scm:git:https://github.com/culturegraph/metafacture-core.git'
122-
url 'https://github.com/culturegraph/metafacture-core'
120+
connection 'scm:git:https://github.com/metafacture/metafacture-core.git'
121+
developerConnection 'scm:git:https://github.com/metafacture/metafacture-core.git'
122+
url 'https://github.com/metafacture/metafacture-core'
123123
tag project.scmInfo.tag ?: 'HEAD'
124124
}
125125
issueManagement {
126126
system 'Github'
127-
url 'https://github.com/culturegraph/metafacture-core/issues'
127+
url 'https://github.com/metafacture/metafacture-core/issues'
128128
}
129129
ciManagement {
130130
system 'Travis CI'
131-
url 'https://travis-ci.org/culturegraph/metafacture-core'
131+
url 'https://travis-ci.org/metafacture/metafacture-core'
132132
}
133133
}
134134

0 commit comments

Comments
 (0)