|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 | <parent>
|
6 |
| - <groupId>com.embabel.build</groupId> |
7 |
| - <artifactId>embabel-build-parent</artifactId> |
8 |
| - <version>0.1.0-SNAPSHOT</version> |
| 6 | + <groupId>org.springframework.boot</groupId> |
| 7 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 8 | + <version>3.5.3</version> |
| 9 | + <relativePath/> <!-- Lookup parent from repository --> |
9 | 10 | </parent>
|
10 | 11 | <groupId>com.embabel.hub</groupId>
|
11 |
| - <artifactId>coding-agent</artifactId> |
| 12 | + <artifactId>coder</artifactId> |
12 | 13 | <version>0.1.0-SNAPSHOT</version>
|
13 | 14 | <packaging>jar</packaging>
|
14 |
| - <name>Embabel Coding Agent</name> |
15 |
| - <description>Embabel Agentic Flow for Software Engineers</description> |
| 15 | + <name>Coder</name> |
| 16 | + <description>Coding agent</description> |
16 | 17 |
|
17 | 18 | <properties>
|
18 |
| - <embabel-agent-api.version>0.1.0-SNAPSHOT</embabel-agent-api.version> |
| 19 | + <embabel-agent.version>0.1.0-SNAPSHOT</embabel-agent.version> |
| 20 | + <spring-ai.version>1.0.0-M8</spring-ai.version> |
| 21 | + <kotlin.version>2.1.10</kotlin.version> |
| 22 | + <kotlin.compiler.apiVersion>2.1</kotlin.compiler.apiVersion> |
| 23 | + <java.version>21</java.version> |
19 | 24 | </properties>
|
20 | 25 |
|
21 |
| - |
22 | 26 | <dependencies>
|
23 | 27 |
|
24 | 28 | <dependency>
|
25 | 29 | <groupId>com.embabel.agent</groupId>
|
26 | 30 | <artifactId>embabel-agent-starter</artifactId>
|
27 |
| - <version>${embabel-agent-api.version}</version> |
| 31 | + <version>${embabel-agent.version}</version> |
28 | 32 | </dependency>
|
29 | 33 |
|
30 | 34 | <dependency>
|
31 | 35 | <groupId>com.embabel.agent</groupId>
|
32 | 36 | <artifactId>embabel-agent-test</artifactId>
|
33 |
| - <version>${embabel-agent-api.version}</version> |
| 37 | + <version>${embabel-agent.version}</version> |
| 38 | + </dependency> |
| 39 | + |
| 40 | + |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework.boot</groupId> |
| 43 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>org.springframework.boot</groupId> |
| 48 | + <artifactId>spring-boot-devtools</artifactId> |
| 49 | + <scope>runtime</scope> |
| 50 | + <optional>true</optional> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <dependency> |
| 54 | + <groupId>org.springframework.boot</groupId> |
| 55 | + <artifactId>spring-boot-starter-thymeleaf</artifactId> |
34 | 56 | </dependency>
|
35 | 57 |
|
| 58 | + <!-- Unit and Integration Testing --> |
36 | 59 | <dependency>
|
37 | 60 | <groupId>org.springframework.boot</groupId>
|
38 | 61 | <artifactId>spring-boot-starter-test</artifactId>
|
|
49 | 72 | </dependencies>
|
50 | 73 |
|
51 | 74 | <build>
|
| 75 | + <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> |
| 76 | + <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> |
52 | 77 | <plugins>
|
53 |
| - <!-- Production Build Plugins --> |
54 |
| - <plugin> |
55 |
| - <groupId>org.jetbrains.kotlin</groupId> |
56 |
| - <artifactId>kotlin-maven-plugin</artifactId> |
57 |
| - </plugin> |
58 |
| - |
59 | 78 | <plugin>
|
60 | 79 | <groupId>org.springframework.boot</groupId>
|
61 | 80 | <artifactId>spring-boot-maven-plugin</artifactId>
|
62 |
| - <version>${spring-boot.version}</version> |
63 |
| - </plugin> |
64 |
| - |
65 |
| - <!-- Testing and Quality Build Plugins --> |
66 |
| - <plugin> |
67 |
| - <groupId>org.jacoco</groupId> |
68 |
| - <artifactId>jacoco-maven-plugin</artifactId> |
69 | 81 | </plugin>
|
70 |
| - |
71 | 82 | <plugin>
|
72 |
| - <groupId>org.apache.maven.plugins</groupId> |
73 |
| - <artifactId>maven-surefire-plugin</artifactId> |
74 |
| - </plugin> |
75 |
| - |
76 |
| - <plugin> |
77 |
| - <groupId>pl.project13.maven</groupId> |
78 |
| - <artifactId>git-commit-id-plugin</artifactId> |
| 83 | + <groupId>org.jetbrains.kotlin</groupId> |
| 84 | + <artifactId>kotlin-maven-plugin</artifactId> |
| 85 | + <configuration> |
| 86 | + <args> |
| 87 | + <arg>-Xjsr305=strict</arg> |
| 88 | + </args> |
| 89 | + <compilerPlugins> |
| 90 | + <plugin>spring</plugin> |
| 91 | + </compilerPlugins> |
| 92 | + </configuration> |
| 93 | + <dependencies> |
| 94 | + <dependency> |
| 95 | + <groupId>org.jetbrains.kotlin</groupId> |
| 96 | + <artifactId>kotlin-maven-allopen</artifactId> |
| 97 | + <version>${kotlin.version}</version> |
| 98 | + </dependency> |
| 99 | + </dependencies> |
79 | 100 | </plugin>
|
80 | 101 | </plugins>
|
81 | 102 | </build>
|
|
0 commit comments