├── .github └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .java-version ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── prefiller ├── build.gradle.kts └── src │ ├── main │ ├── antlr │ │ └── io │ │ │ └── github │ │ │ └── simonschiller │ │ │ └── prefiller │ │ │ └── antlr │ │ │ └── SQLite.g4 │ └── kotlin │ │ └── io │ │ └── github │ │ └── simonschiller │ │ └── prefiller │ │ ├── DatabaseConfig.kt │ │ ├── PrefillerExtension.kt │ │ ├── PrefillerPlugin.kt │ │ ├── PrefillerTask.kt │ │ └── internal │ │ ├── DatabasePopulator.kt │ │ ├── RoomSchemaLocator.kt │ │ ├── parser │ │ ├── StatementParser.kt │ │ ├── StatementParserFactory.kt │ │ ├── room │ │ │ └── RoomSchemaStatementParserV1.kt │ │ └── sqlite │ │ │ └── SqliteStatementParser.kt │ │ └── util │ │ └── Version.kt │ └── test │ ├── kotlin │ └── io │ │ └── github │ │ └── simonschiller │ │ └── prefiller │ │ ├── PrefillerIntegrationTest.kt │ │ ├── internal │ │ ├── DatabasePopulatorTest.kt │ │ ├── RoomSchemaLocatorTest.kt │ │ ├── parser │ │ │ ├── StatementParserFactoryTest.kt │ │ │ ├── room │ │ │ │ └── RoomSchemaStatementParserV1Test.kt │ │ │ └── sqlite │ │ │ │ └── SqliteStatementParserTest.kt │ │ └── util │ │ │ └── VersionTest.kt │ │ └── testutil │ │ ├── ProjectExtension.kt │ │ ├── TestVersions.kt │ │ └── spec │ │ ├── BaseProjectSpec.kt │ │ ├── DynamicFeatureProjectSpec.kt │ │ ├── JavaProjectSpec.kt │ │ ├── KotlinKaptProjectSpec.kt │ │ ├── KotlinKspProjectSpec.kt │ │ ├── KotlinProjectSpec.kt │ │ ├── NoSchemaLocationJavaProjectSpec.kt │ │ ├── NoSchemaLocationKotlinKaptProjectSpec.kt │ │ ├── NoSchemaLocationKotlinKspProjectSpec.kt │ │ ├── NonAndroidProjectSpec.kt │ │ └── ProjectSpec.kt │ └── resources │ └── schemas │ └── v1.json ├── sample ├── java │ ├── build.gradle.kts │ ├── schemas │ │ ├── io.github.simonschiller.prefiller.sample.customer.CustomerDatabase │ │ │ └── 1.json │ │ └── io.github.simonschiller.prefiller.sample.product.ProductDatabase │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ └── 3.json │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── io │ │ │ └── github │ │ │ └── simonschiller │ │ │ └── prefiller │ │ │ └── sample │ │ │ ├── creditcard │ │ │ ├── CreditCard.java │ │ │ └── CreditCardDao.java │ │ │ ├── customer │ │ │ ├── AdultCustomer.java │ │ │ ├── Customer.java │ │ │ ├── CustomerDao.java │ │ │ └── CustomerDatabase.java │ │ │ ├── order │ │ │ ├── Order.java │ │ │ └── OrderDao.java │ │ │ └── product │ │ │ ├── Product.java │ │ │ ├── ProductDao.java │ │ │ └── ProductDatabase.java │ │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── simonschiller │ │ └── prefiller │ │ └── sample │ │ ├── customer │ │ └── CustomerDatabaseTest.java │ │ └── product │ │ └── ProductDatabaseTest.java ├── kotlin-kapt │ ├── build.gradle.kts │ ├── schemas │ │ ├── io.github.simonschiller.prefiller.sample.customer.CustomerDatabase │ │ │ └── 1.json │ │ └── io.github.simonschiller.prefiller.sample.product.ProductDatabase │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ └── 3.json │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── simonschiller │ │ │ └── prefiller │ │ │ └── sample │ │ │ ├── creditcard │ │ │ ├── CreditCard.kt │ │ │ └── CreditCardDao.kt │ │ │ ├── customer │ │ │ ├── AdultCustomer.kt │ │ │ ├── Customer.kt │ │ │ ├── CustomerDao.kt │ │ │ └── CustomerDatabase.kt │ │ │ ├── order │ │ │ ├── Order.kt │ │ │ └── OrderDao.kt │ │ │ └── product │ │ │ ├── Product.kt │ │ │ ├── ProductDao.kt │ │ │ └── ProductDatabase.kt │ │ └── test │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── simonschiller │ │ └── prefiller │ │ └── sample │ │ ├── customer │ │ └── CustomerDatabaseTest.kt │ │ └── product │ │ └── ProductDatabaseTest.kt ├── kotlin-ksp │ ├── build.gradle.kts │ ├── schemas │ │ ├── io.github.simonschiller.prefiller.sample.customer.CustomerDatabase │ │ │ └── 1.json │ │ └── io.github.simonschiller.prefiller.sample.product.ProductDatabase │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ └── 3.json │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── io │ │ │ └── github │ │ │ └── simonschiller │ │ │ └── prefiller │ │ │ └── sample │ │ │ ├── creditcard │ │ │ ├── CreditCard.kt │ │ │ └── CreditCardDao.kt │ │ │ ├── customer │ │ │ ├── AdultCustomer.kt │ │ │ ├── Customer.kt │ │ │ ├── CustomerDao.kt │ │ │ └── CustomerDatabase.kt │ │ │ ├── order │ │ │ ├── Order.kt │ │ │ └── OrderDao.kt │ │ │ └── product │ │ │ ├── Product.kt │ │ │ ├── ProductDao.kt │ │ │ └── ProductDatabase.kt │ │ └── test │ │ └── kotlin │ │ └── io │ │ └── github │ │ └── simonschiller │ │ └── prefiller │ │ └── sample │ │ ├── customer │ │ └── CustomerDatabaseTest.kt │ │ └── product │ │ └── ProductDatabaseTest.kt └── sql │ ├── customers.sql │ ├── orders.sql │ └── products.sql └── settings.gradle.kts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/.gitignore -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/gradlew.bat -------------------------------------------------------------------------------- /prefiller/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/build.gradle.kts -------------------------------------------------------------------------------- /prefiller/src/main/antlr/io/github/simonschiller/prefiller/antlr/SQLite.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/antlr/io/github/simonschiller/prefiller/antlr/SQLite.g4 -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/DatabaseConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/DatabaseConfig.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/PrefillerExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/PrefillerExtension.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/PrefillerPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/PrefillerPlugin.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/PrefillerTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/PrefillerTask.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/DatabasePopulator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/DatabasePopulator.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/RoomSchemaLocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/RoomSchemaLocator.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/parser/StatementParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/parser/StatementParser.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/parser/StatementParserFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/parser/StatementParserFactory.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/parser/room/RoomSchemaStatementParserV1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/parser/room/RoomSchemaStatementParserV1.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/parser/sqlite/SqliteStatementParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/parser/sqlite/SqliteStatementParser.kt -------------------------------------------------------------------------------- /prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/util/Version.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/main/kotlin/io/github/simonschiller/prefiller/internal/util/Version.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/PrefillerIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/PrefillerIntegrationTest.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/DatabasePopulatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/DatabasePopulatorTest.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/RoomSchemaLocatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/RoomSchemaLocatorTest.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/parser/StatementParserFactoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/parser/StatementParserFactoryTest.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/parser/room/RoomSchemaStatementParserV1Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/parser/room/RoomSchemaStatementParserV1Test.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/parser/sqlite/SqliteStatementParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/parser/sqlite/SqliteStatementParserTest.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/util/VersionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/internal/util/VersionTest.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/ProjectExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/ProjectExtension.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/TestVersions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/TestVersions.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/BaseProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/BaseProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/DynamicFeatureProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/DynamicFeatureProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/JavaProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/JavaProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/KotlinKaptProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/KotlinKaptProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/KotlinKspProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/KotlinKspProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/KotlinProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/KotlinProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/NoSchemaLocationJavaProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/NoSchemaLocationJavaProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/NoSchemaLocationKotlinKaptProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/NoSchemaLocationKotlinKaptProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/NoSchemaLocationKotlinKspProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/NoSchemaLocationKotlinKspProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/NonAndroidProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/NonAndroidProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/ProjectSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/kotlin/io/github/simonschiller/prefiller/testutil/spec/ProjectSpec.kt -------------------------------------------------------------------------------- /prefiller/src/test/resources/schemas/v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/prefiller/src/test/resources/schemas/v1.json -------------------------------------------------------------------------------- /sample/java/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/build.gradle.kts -------------------------------------------------------------------------------- /sample/java/schemas/io.github.simonschiller.prefiller.sample.customer.CustomerDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/schemas/io.github.simonschiller.prefiller.sample.customer.CustomerDatabase/1.json -------------------------------------------------------------------------------- /sample/java/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/1.json -------------------------------------------------------------------------------- /sample/java/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/2.json -------------------------------------------------------------------------------- /sample/java/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/3.json -------------------------------------------------------------------------------- /sample/java/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/creditcard/CreditCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/creditcard/CreditCard.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/creditcard/CreditCardDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/creditcard/CreditCardDao.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/customer/AdultCustomer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/customer/AdultCustomer.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/customer/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/customer/Customer.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/customer/CustomerDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/customer/CustomerDao.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/customer/CustomerDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/customer/CustomerDatabase.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/order/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/order/Order.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/order/OrderDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/order/OrderDao.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/product/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/product/Product.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/product/ProductDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/product/ProductDao.java -------------------------------------------------------------------------------- /sample/java/src/main/java/io/github/simonschiller/prefiller/sample/product/ProductDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/main/java/io/github/simonschiller/prefiller/sample/product/ProductDatabase.java -------------------------------------------------------------------------------- /sample/java/src/test/java/io/github/simonschiller/prefiller/sample/customer/CustomerDatabaseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/test/java/io/github/simonschiller/prefiller/sample/customer/CustomerDatabaseTest.java -------------------------------------------------------------------------------- /sample/java/src/test/java/io/github/simonschiller/prefiller/sample/product/ProductDatabaseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/java/src/test/java/io/github/simonschiller/prefiller/sample/product/ProductDatabaseTest.java -------------------------------------------------------------------------------- /sample/kotlin-kapt/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/build.gradle.kts -------------------------------------------------------------------------------- /sample/kotlin-kapt/schemas/io.github.simonschiller.prefiller.sample.customer.CustomerDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/schemas/io.github.simonschiller.prefiller.sample.customer.CustomerDatabase/1.json -------------------------------------------------------------------------------- /sample/kotlin-kapt/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/1.json -------------------------------------------------------------------------------- /sample/kotlin-kapt/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/2.json -------------------------------------------------------------------------------- /sample/kotlin-kapt/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/3.json -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/creditcard/CreditCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/creditcard/CreditCard.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/creditcard/CreditCardDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/creditcard/CreditCardDao.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/AdultCustomer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/AdultCustomer.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/Customer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/Customer.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDao.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDatabase.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/order/Order.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/order/Order.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/order/OrderDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/order/OrderDao.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/Product.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/Product.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDao.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDatabase.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/test/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDatabaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/test/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDatabaseTest.kt -------------------------------------------------------------------------------- /sample/kotlin-kapt/src/test/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDatabaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-kapt/src/test/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDatabaseTest.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/build.gradle.kts -------------------------------------------------------------------------------- /sample/kotlin-ksp/schemas/io.github.simonschiller.prefiller.sample.customer.CustomerDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/schemas/io.github.simonschiller.prefiller.sample.customer.CustomerDatabase/1.json -------------------------------------------------------------------------------- /sample/kotlin-ksp/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/1.json -------------------------------------------------------------------------------- /sample/kotlin-ksp/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/2.json -------------------------------------------------------------------------------- /sample/kotlin-ksp/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/schemas/io.github.simonschiller.prefiller.sample.product.ProductDatabase/3.json -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/creditcard/CreditCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/creditcard/CreditCard.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/creditcard/CreditCardDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/creditcard/CreditCardDao.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/AdultCustomer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/AdultCustomer.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/Customer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/Customer.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDao.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDatabase.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/order/Order.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/order/Order.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/order/OrderDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/order/OrderDao.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/Product.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/Product.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDao.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/main/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDatabase.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/test/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDatabaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/test/kotlin/io/github/simonschiller/prefiller/sample/customer/CustomerDatabaseTest.kt -------------------------------------------------------------------------------- /sample/kotlin-ksp/src/test/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDatabaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/kotlin-ksp/src/test/kotlin/io/github/simonschiller/prefiller/sample/product/ProductDatabaseTest.kt -------------------------------------------------------------------------------- /sample/sql/customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/sql/customers.sql -------------------------------------------------------------------------------- /sample/sql/orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/sql/orders.sql -------------------------------------------------------------------------------- /sample/sql/products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/sample/sql/products.sql -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonschiller/prefiller/HEAD/settings.gradle.kts --------------------------------------------------------------------------------