Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/maven-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Build with Maven
working-directory: latte-umbrella
working-directory: latte
run: mvn -B package --file pom.xml

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
run: |
cd latte-umbrella
cd latte
mvn com.github.ferstl:depgraph-maven-plugin:4.0.1:graph
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,12 @@ Local variables are not annotated and start with a default annotation that allow
## Project Structure

```
latte-umbrella/
latte/
├── src/
│ └── main/
│ └── java/
│ ├── latte/
│ │ └── latte_umbrella/
│ │ └── App.java # Main application entry point
│ │ └── App.java # Main application entry point
│ └── examples/ # Test examples for the analysis
│ └── test/
│ └── java/
Expand All @@ -58,8 +57,8 @@ latte-umbrella/
Clone the repository and build with Maven:

```bash
git clone https://github.com/your-username/latte.git
cd latte
git clone https://github.com/CatarinaGamboa/latte.git
cd latte/latte
mvn clean install
```

Expand Down
57 changes: 0 additions & 57 deletions latte-umbrella/.classpath

This file was deleted.

34 changes: 0 additions & 34 deletions latte-umbrella/.project

This file was deleted.

5 changes: 0 additions & 5 deletions latte-umbrella/.settings/org.eclipse.core.resources.prefs

This file was deleted.

16 changes: 0 additions & 16 deletions latte-umbrella/.settings/org.eclipse.jdt.core.prefs

This file was deleted.

4 changes: 0 additions & 4 deletions latte-umbrella/.settings/org.eclipse.m2e.core.prefs

This file was deleted.

File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions latte-umbrella/pom.xml → latte/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<modelVersion>4.0.0</modelVersion>

<groupId>latte</groupId>
<artifactId>latte-umbrella</artifactId>
<artifactId>latte</artifactId>
<version>0.0.1-SNAPSHOT</version>

<name>latte-umbrella</name>
<name>latte</name>
<!-- FIXME change it to the project's website -->
<url>http://www.example.com</url>

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
package latte.latte_umbrella;

package api;
import java.io.File;
import java.security.InvalidParameterException;
import java.util.Arrays;
Expand Down Expand Up @@ -30,7 +29,7 @@ public static void main( String[] args ){

if (args.length == 0) {
System.out.println("Please enter the path to the file you want to process");
String allPath = "latte-umbrella/src/main/java/examples/MyStackTest.java";
String allPath = "latte/src/main/java/examples/MyStackTest.java";
launcher(allPath);

} else if (args.length == 1 && args[0].equals("-multi")) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package latte.latte_umbrella;
package api;

public class JsonError {
private int startLine;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package latte.latte_umbrella;


import static org.junit.Assert.assertTrue;
import static org.junit.jupiter.api.Assertions.assertFalse;
Expand All @@ -11,7 +11,7 @@
import context.SymbolicEnvironment;
import context.SymbolicValue;
import typechecking.LatteException;

import api.App;
/**
* Unit test for simple App.
*/
Expand Down