Skip to content
Open
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div align="center">

[![IntelliJ Platform](https://img.shields.io/badge/Platform-IntelliJ%20IDEA%202025%2B-brightgreen)](https://www.jetbrains.com/idea/)
[![IntelliJ Platform](https://img.shields.io/badge/Platform-IntelliJ%20IDEA%202023%2B-brightgreen)](https://www.jetbrains.com/idea/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue)](LICENSE)
[![Version](https://img.shields.io/badge/Version-0.1.3-orange)](https://github.com/OpenProjectX/ai-test-plugin/releases)

Expand Down Expand Up @@ -83,7 +83,7 @@ ai-test-plugin/

### From JetBrains Marketplace

1. Open IntelliJ IDEA 2025.2+
1. Open IntelliJ IDEA 2023.3+
2. Go to **Settings → Plugins**
3. Search for "AI Test Generator"
4. Install and restart IDE
Expand Down Expand Up @@ -209,7 +209,7 @@ Feature: User API Contract Tests

### Prerequisites

- IntelliJ IDEA 2025.2+ (for development)
- IntelliJ IDEA 2023.3+ (for development)
- JDK 17+
- Gradle 9.x

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ org.gradle.caching=true
org.gradle.configuration-cache=true

platformType = IC
platformVersion = 2025.2
platformVersion = 2023.3
4 changes: 2 additions & 2 deletions plugin-idea/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ val buildPluginJar by tasks.registering(Zip::class) {

tasks {
patchPluginXml {
sinceBuild.set("243")
untilBuild.set("253.*")
sinceBuild.set("231")
untilBuild.set("233.*")
}

assemble {
Expand Down