Skip to content

Commit d72a1a7

Browse files
authored
Merge pull request #117 from eclipse-biscuit/eclipse_package
Eclipse package
2 parents 7ea07ab + 63f1925 commit d72a1a7

File tree

84 files changed

+1079
-678
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+1079
-678
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,14 @@ mvn clean install
3434
# skip tests
3535
mvn clean install -DskipTests
3636
```
37+
38+
## License
39+
40+
Licensed under Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
41+
42+
### Contribution
43+
44+
Unless you explicitly state otherwise, any contribution intentionally
45+
submitted for inclusion in the work by you, as defined in the Apache-2.0
46+
license, shall be licensed as above, without any additional terms or
47+
conditions.

pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1+
<!--
2+
~ Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
~ SPDX-License-Identifier: Apache-2.0
4+
-->
5+
16
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
38
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.biscuitsec</groupId>
9+
<groupId>org.eclipse</groupId>
510
<artifactId>biscuit</artifactId>
611
<packaging>jar</packaging>
712
<version>4.0.1</version>
813
<name>biscuit-java</name>
9-
<url>https://github.com/biscuit-auth/biscuit-java</url>
14+
<url>https://github.com/eclipse-biscuit/biscuit-java</url>
1015

1116
<description>Java support for the biscuit auth token and policy language</description>
1217

src/main/java/org/biscuitsec/biscuit/crypto/package-info.java

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

src/main/java/org/biscuitsec/biscuit/datalog/package-info.java

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

src/main/java/org/biscuitsec/biscuit/error/package-info.java

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

src/main/java/org/biscuitsec/biscuit/token/builder/package-info.java

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

src/main/java/org/biscuitsec/biscuit/token/format/package-info.java

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

src/main/java/org/biscuitsec/biscuit/token/package-info.java

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

src/main/java/org/biscuitsec/biscuit/crypto/BlockSignatureBuffer.java renamed to src/main/java/org/eclipse/biscuit/crypto/BlockSignatureBuffer.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
package org.biscuitsec.biscuit.crypto;
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package org.eclipse.biscuit.crypto;
27

38
import java.nio.ByteBuffer;
49
import java.nio.ByteOrder;
510
import java.util.Optional;
6-
import org.biscuitsec.biscuit.token.format.ExternalSignature;
11+
import org.eclipse.biscuit.token.format.ExternalSignature;
712

813
public final class BlockSignatureBuffer {
914
public static final int HEADER_SIZE = 4;

src/main/java/org/biscuitsec/biscuit/crypto/Ed25519KeyPair.java renamed to src/main/java/org/eclipse/biscuit/crypto/Ed25519KeyPair.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
package org.biscuitsec.biscuit.crypto;
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package org.eclipse.biscuit.crypto;
27

38
import java.security.SecureRandom;
4-
import org.biscuitsec.biscuit.token.builder.Utils;
9+
import org.eclipse.biscuit.token.builder.Utils;
510
import org.bouncycastle.crypto.AsymmetricCipherKeyPair;
611
import org.bouncycastle.crypto.generators.Ed25519KeyPairGenerator;
712
import org.bouncycastle.crypto.params.Ed25519KeyGenerationParameters;

0 commit comments

Comments
 (0)