Skip to content

Commit

Permalink
Merge pull request #26 from mlocati/rename-organization
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati authored Nov 29, 2023
2 parents ee271da + 487a1ff commit a5900a8
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build](https://github.com/concrete5-community/concrete-cif/actions/workflows/build.yml/badge.svg)](https://github.com/concrete5-community/concrete-cif/actions/workflows/build.yml)
[![Build](https://github.com/concretecms/concrete-cif/actions/workflows/build.yml/badge.svg)](https://github.com/concretecms/concrete-cif/actions/workflows/build.yml)

# Validation of Concrete CIF files

Expand All @@ -10,12 +10,12 @@ Because of the complexity of the CIF files, we need to use XML Schema v1.1.

The problem is that PHP and many XML validators only support XML Schema v1.0.

In order to solve this problem, you can use the [`concrete-cif.jar` app](https://github.com/concrete5-community/concrete-cif/releases/latest/download/concrete-cif.jar) you can find in the [GitHub releases](https://github.com/concrete5-community/concrete-cif/releases) (of course you can use the [`concrete-cif-1.0.xsd` file](https://github.com/concrete5-community/concrete-cif/releases/latest/download/concrete-cif-1.0.xsd) directly).
In order to solve this problem, you can use the [`concrete-cif.jar` app](https://github.com/concretecms/concrete-cif/releases/latest/download/concrete-cif.jar) you can find in the [GitHub releases](https://github.com/concretecms/concrete-cif/releases) (of course you can use the [`concrete-cif-1.0.xsd` file](https://github.com/concretecms/concrete-cif/releases/latest/download/concrete-cif-1.0.xsd) directly).

## Using `concrete-cif.jar`

1. Install Java (at least version 17). If you don't know how to do that, take a look at [Eclipse Temurin](https://adoptium.net/))
2. [Download](https://github.com/concrete5-community/concrete-cif/releases/latest/download/concrete-cif.jar) the latest version
2. [Download](https://github.com/concretecms/concrete-cif/releases/latest/download/concrete-cif.jar) the latest version
3. Call concrete-cif.jar by passing it the files (or the directories) you want to check.
For example:
```sh
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.concretecms_community.concrete_cif</groupId>
<groupId>org.concretecms.concrete_cif</groupId>
<artifactId>concrete_cif</artifactId>
<version>0.0.0-SNAPSHOT</version>
<name>concrete-cif</name>
<url>https://github.com/concrete5-community/concrete-cif</url>
<url>https://github.com/concretecms/concrete-cif</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
Expand Down Expand Up @@ -124,12 +124,12 @@
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<Main-Class>
org.concretecms_community.concrete_cif.App</Main-Class>
org.concretecms.concrete_cif.App</Main-Class>
</transformer>
</transformers>
<createDependencyReducedPom>false</createDependencyReducedPom>
<entryPoints>
<entryPoint>org.concretecms_community.concrete_cif.App</entryPoint>
<entryPoint>org.concretecms.concrete_cif.App</entryPoint>
</entryPoints>
<outputFile>concrete-cif.jar</outputFile>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.concretecms_community.concrete_cif;
package org.concretecms.concrete_cif;

import java.io.File;
import java.io.FileNotFoundException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.concretecms_community.concrete_cif;
package org.concretecms.concrete_cif;

import java.util.List;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.concretecms_community.concrete_cif;
package org.concretecms.concrete_cif;

import java.io.File;
import java.io.FileNotFoundException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.concretecms_community.concrete_cif;
package org.concretecms.concrete_cif;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.concretecms_community.concrete_cif;
package org.concretecms.concrete_cif;

import java.util.ArrayList;
import java.util.List;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/AppWrapper.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import org.concretecms_community.concrete_cif.App;
import org.concretecms.concrete_cif.App;

public class AppWrapper extends App {

Expand Down

0 comments on commit a5900a8

Please sign in to comment.