<feed xmlns='http://www.w3.org/2005/Atom'>
<title>github/frege-gradle-plugin.git/src/test/java/ch, branch feature/intellij-new</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/'/>
<entry>
<title>refactor: finishes the replFregeTask refactoring</title>
<updated>2022-02-23T10:06:00+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>tgagnaux@gmail.com</email>
</author>
<published>2022-02-23T10:04:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=a4879784e7be87b5ee184b47eb8faba635019a5d'/>
<id>a4879784e7be87b5ee184b47eb8faba635019a5d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: continues with staged builder refactoring</title>
<updated>2022-02-09T20:37:28+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>tgagnaux@gmail.com</email>
</author>
<published>2022-02-09T20:37:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=0aa4dd065ee78f9acc88b39625cc4a9b47f6c944'/>
<id>0aa4dd065ee78f9acc88b39625cc4a9b47f6c944</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: introduces staged builder patterns for frege project setup</title>
<updated>2022-02-09T09:43:29+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>tgagnaux@gmail.com</email>
</author>
<published>2022-02-09T09:43:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=43ee2210fa07f42a13ac6879ae167db6d2729742'/>
<id>43ee2210fa07f42a13ac6879ae167db6d2729742</id>
<content type='text'>
(WIP)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(WIP)
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: simplifies the whole gradle plugin</title>
<updated>2022-02-02T17:50:13+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>tgagnaux@gmail.com</email>
</author>
<published>2022-02-02T17:50:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=47f99d65a09660863cb5d6b25b239ead3389f3ac'/>
<id>47f99d65a09660863cb5d6b25b239ead3389f3ac</id>
<content type='text'>
- the `compileFregeTask` has a new optional input called `mainModuleName`. If
it is set, it and only its dependencies will be compiled, otherwise all
`.fr`files in the `mainSourceDir`will be compiled.

- the internal `DependencyFregeTask` is deleted because it was only
used by the vscode plugin and I decided to remove this gradle plugin
as a dependency.

- an example project folder was added to test the plugin manually.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- the `compileFregeTask` has a new optional input called `mainModuleName`. If
it is set, it and only its dependencies will be compiled, otherwise all
`.fr`files in the `mainSourceDir`will be compiled.

- the internal `DependencyFregeTask` is deleted because it was only
used by the vscode plugin and I decided to remove this gradle plugin
as a dependency.

- an example project folder was added to test the plugin manually.
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: renames `replModule` -&gt; `replSource` and updates readme</title>
<updated>2021-12-21T12:51:57+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>tgagnaux@gmail.com</email>
</author>
<published>2021-12-21T12:51:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=4aa7c0a5e3935c730d82b091ab23ae7cd8a2db71'/>
<id>4aa7c0a5e3935c730d82b091ab23ae7cd8a2db71</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: adds `replSource` property and command-line option</title>
<updated>2021-12-21T10:22:55+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>tgagnaux@gmail.com</email>
</author>
<published>2021-12-20T19:48:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=992490f446720cd4cf4fb9aadff463b2328a8287'/>
<id>992490f446720cd4cf4fb9aadff463b2328a8287</id>
<content type='text'>
The `replSource` property specifies the frege source file that you want to
load into the repl. It is excluded in the `fregeCompile` task so that
we don't get two java class files (one from `compileFrege` and one
from the fregeRepl `:l` command) that shadow each other on the classpath.

As a result, we can make interactive changes to the `replSource` file and
use the `:r` reload command to see them.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `replSource` property specifies the frege source file that you want to
load into the repl. It is excluded in the `fregeCompile` task so that
we don't get two java class files (one from `compileFrege` and one
from the fregeRepl `:l` command) that shadow each other on the classpath.

As a result, we can make interactive changes to the `replSource` file and
use the `:r` reload command to see them.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: adds `compilerFlags` property to configure the Frege compiler</title>
<updated>2021-11-16T15:45:06+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>tgagnaux@gmail.com</email>
</author>
<published>2021-11-16T15:45:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=b996814fc3255338d7eae5a58c9b58dbf9229154'/>
<id>b996814fc3255338d7eae5a58c9b58dbf9229154</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: tests and makes `FregeDTOBuilder` a singleton</title>
<updated>2021-11-09T23:37:04+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>tgagnaux@gmail.com</email>
</author>
<published>2021-11-09T23:37:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=06d18924294dfe78eaba8eafe3a5ec559c43aecb'/>
<id>06d18924294dfe78eaba8eafe3a5ec559c43aecb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: adds two tests and makes them pass for new `runFregeTask`</title>
<updated>2021-11-09T21:26:45+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>tgagnaux@gmail.com</email>
</author>
<published>2021-11-09T21:26:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=42bdca9c70e54d095e9ebfd69e82d1bca15bf9ac'/>
<id>42bdca9c70e54d095e9ebfd69e82d1bca15bf9ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor: Uses junit5 nested tests for a better structure</title>
<updated>2021-07-08T14:04:54+00:00</updated>
<author>
<name>Thibault Gagnaux</name>
<email>thibault.gagnaux@bit.admin.ch</email>
</author>
<published>2021-07-08T10:18:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/frege-gradle-plugin.git/commit/?id=ce39d8f5cdfae2788c4664e08d895afead76c682'/>
<id>ce39d8f5cdfae2788c4664e08d895afead76c682</id>
<content type='text'>
Setups missing java 11 in the github workflow
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Setups missing java 11 in the github workflow
</pre>
</div>
</content>
</entry>
</feed>
