Skip to content

Commit 16ede11

Browse files
l46kokcopybara-github
authored andcommitted
Remove README warning regarding repo move
PiperOrigin-RevId: 933277723
1 parent a5817b4 commit 16ede11

3 files changed

Lines changed: 12 additions & 19 deletions

File tree

README.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
# Common Expression Language for Java
22

3-
> [!WARNING]
4-
> **On June 16, 2026, this repository will move to
5-
> github.com/cel-expr/cel-java!**
6-
>
7-
> Please update your links and dependencies. See the [pinned
8-
> issue](https://github.com/google/cel-java/issues/1066) for details.
9-
103
The Common Expression Language (CEL) is a non-Turing complete language designed
114
for simplicity, speed, safety, and portability. CEL's C-like [syntax][1] looks
125
nearly identical to equivalent expressions in C++, Go, Java, and TypeScript.
@@ -389,8 +382,8 @@ Released under the [Apache License](LICENSE).
389382
[4]: https://github.com/google/re2j
390383
[5]: https://github.com/protocolbuffers/protobuf/tree/master/java
391384
[6]: https://github.com/antlr/antlr4/tree/master/runtime/Java
392-
[7]: https://github.com/google/cel-java/issues
385+
[7]: https://github.com/cel-expr/cel-java/issues
393386
[8]: https://search.maven.org/search?q=g:dev.cel
394-
[9]: https://github.com/google/cel-java/blob/main/compiler/src/main/java/dev/cel/compiler/CelCompilerBuilder.java
395-
[10]: https://github.com/google/cel-spec/blob/master/doc/langdef.md#macros
396-
[11]: https://github.com/google/cel-java/blob/main/extensions/src/main/java/dev/cel/extensions/README.md
387+
[9]: https://github.com/cel-expr/cel-java/blob/main/compiler/src/main/java/dev/cel/compiler/CelCompilerBuilder.java
388+
[10]: https://github.com/cel-expr/cel-spec/blob/master/doc/langdef.md#macros
389+
[11]: https://github.com/cel-expr/cel-java/blob/main/extensions/src/main/java/dev/cel/extensions/README.md

codelab/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The code for this codelab lives in the `codelab` folder of the cel-java repo. Th
5050
Clone and cd into the repo:
5151

5252
```
53-
git clone git@github.com:google/cel-java.git
53+
git clone git@github.com:cel-expr/cel-java.git
5454
cd cel-java
5555
```
5656

@@ -74,10 +74,10 @@ Tests run: 5, Failures: 5
7474

7575
Each exercise is laid out as `ExerciseN.java` and is accompanied by failing tests. Throughout this codelab, we will modify the main exercise code to make these tests pass.
7676

77-
- Codelab code: https://github.com/google/cel-java/tree/main/codelab/src/main/codelab
78-
- Test code for the main codelab: https://github.com/google/cel-java/tree/main/codelab/src/test/codelab
79-
- Codelab solution code: https://github.com/google/cel-java/tree/main/codelab/src/main/codelab/solutions
80-
- Test code for the solution: https://github.com/google/cel-java/tree/main/codelab/src/test/codelab/solutions
77+
- Codelab code: https://github.com/cel-expr/cel-java/tree/main/codelab/src/main/codelab
78+
- Test code for the main codelab: https://github.com/cel-expr/cel-java/tree/main/codelab/src/test/codelab
79+
- Codelab solution code: https://github.com/cel-expr/cel-java/tree/main/codelab/src/main/codelab/solutions
80+
- Test code for the solution: https://github.com/cel-expr/cel-java/tree/main/codelab/src/test/codelab/solutions
8181

8282
We will also be using `google.rpc.context.AttributeContext` in [attribute_context.proto](https://github.com/googleapis/googleapis/blob/master/google/rpc/context/attribute_context.proto) to help with defining inputs for exercises.
8383

publish/pom_template.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@
5353
</parent>
5454

5555
<scm>
56-
<connection>scm:git:git://github.com/google/cel-java.git
56+
<connection>scm:git:git://github.com/cel-expr/cel-java.git
5757
</connection>
58-
<url>https://github.com/google/cel-java/tree/main</url>
58+
<url>https://github.com/cel-expr/cel-java/tree/main</url>
5959
</scm>
6060

61-
<url>https://github.com/google/cel-java</url>
61+
<url>https://github.com/cel-expr/cel-java</url>
6262

6363
<version>CEL_VERSION</version>
6464
</project>

0 commit comments

Comments
 (0)