Skip to content

Commit 8073bb2

Browse files
committed
prepared release
1 parent 5136f1b commit 8073bb2

13 files changed

Lines changed: 177 additions & 981 deletions

File tree

.idea/compiler.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/java-semantics.iml

Lines changed: 37 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/alk.jar

16.7 MB
Binary file not shown.

bin/alki.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
jardir="$(dirname "$BASH_SOURCE")"
4-
# echo $jardir
4+
#echo $jardir
55

66
java -jar $jardir/alk.jar ${@:1}
77
exit 0

bin/example.alk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
print(a);
2+
print(pi());
23

34
print({<1, 2>, <1, 2>});
45
print({} == {});

dependency-reduced-pom.xml

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>Alk</groupId>
5+
<artifactId>Alk</artifactId>
6+
<version>1.0</version>
7+
<build>
8+
<finalName>Alk</finalName>
9+
<plugins>
10+
<plugin>
11+
<artifactId>maven-compiler-plugin</artifactId>
12+
<version>2.3.2</version>
13+
<configuration>
14+
<source>1.8</source>
15+
<target>1.8</target>
16+
</configuration>
17+
</plugin>
18+
<plugin>
19+
<artifactId>maven-surefire-plugin</artifactId>
20+
<version>2.22.1</version>
21+
</plugin>
22+
<plugin>
23+
<artifactId>maven-eclipse-plugin</artifactId>
24+
<version>2.9</version>
25+
<configuration>
26+
<downloadSources>true</downloadSources>
27+
<downloadJavadocs>false</downloadJavadocs>
28+
</configuration>
29+
</plugin>
30+
<plugin>
31+
<groupId>org.codehaus.mojo</groupId>
32+
<artifactId>aspectj-maven-plugin</artifactId>
33+
<version>1.11</version>
34+
<executions>
35+
<execution>
36+
<goals>
37+
<goal>compile</goal>
38+
<goal>test-compile</goal>
39+
</goals>
40+
</execution>
41+
</executions>
42+
<configuration>
43+
<complianceLevel>1.8</complianceLevel>
44+
<source>1.8</source>
45+
<target>1.8</target>
46+
</configuration>
47+
</plugin>
48+
<plugin>
49+
<artifactId>maven-shade-plugin</artifactId>
50+
<version>2.3</version>
51+
<executions>
52+
<execution>
53+
<phase>package</phase>
54+
<goals>
55+
<goal>shade</goal>
56+
</goals>
57+
<configuration>
58+
<transformers>
59+
<transformer>
60+
<mainClass>main.ExecutionDriver</mainClass>
61+
</transformer>
62+
</transformers>
63+
</configuration>
64+
</execution>
65+
</executions>
66+
</plugin>
67+
</plugins>
68+
</build>
69+
<dependencies>
70+
<dependency>
71+
<groupId>org.junit.jupiter</groupId>
72+
<artifactId>junit-jupiter-api</artifactId>
73+
<version>5.4.2</version>
74+
<scope>test</scope>
75+
<exclusions>
76+
<exclusion>
77+
<artifactId>apiguardian-api</artifactId>
78+
<groupId>org.apiguardian</groupId>
79+
</exclusion>
80+
<exclusion>
81+
<artifactId>opentest4j</artifactId>
82+
<groupId>org.opentest4j</groupId>
83+
</exclusion>
84+
<exclusion>
85+
<artifactId>junit-platform-commons</artifactId>
86+
<groupId>org.junit.platform</groupId>
87+
</exclusion>
88+
</exclusions>
89+
</dependency>
90+
<dependency>
91+
<groupId>org.junit.jupiter</groupId>
92+
<artifactId>junit-jupiter-engine</artifactId>
93+
<version>5.4.2</version>
94+
<scope>test</scope>
95+
<exclusions>
96+
<exclusion>
97+
<artifactId>junit-platform-engine</artifactId>
98+
<groupId>org.junit.platform</groupId>
99+
</exclusion>
100+
<exclusion>
101+
<artifactId>apiguardian-api</artifactId>
102+
<groupId>org.apiguardian</groupId>
103+
</exclusion>
104+
</exclusions>
105+
</dependency>
106+
</dependencies>
107+
</project>
108+

0 commit comments

Comments
 (0)