Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions WASMImpl/Java/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Maven
/target/
/run/
/dependency-reduced-pom.xml

# IntelliJ IDEA
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
.idea/*
*.iws
*.iml
*.ipr
out/
**/src/main/**/out/
**/src/test/**/out/

# Eclipse
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
**/src/main/**/bin/
**/src/test/**/bin/

# NetBeans
/nbproject/private/
/nbbuild/
/nbdist/

# Visual Studio Code
/.vscode/

# macOS
.DS_Store

# Java
hs_err_pid*.log

# Luxon
/src/main/luxon_server.wasm
6 changes: 6 additions & 0 deletions WASMImpl/Java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@
<artifactId>wasi</artifactId>
<version>${chicory.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down
Loading