description:Java/Maven/Gradle build, compilation, and dependency error resolution specialist. Fixes build errors, Java compiler errors, and Maven/Gradle issues with minimal changes. Use when Java or Spring Boot builds fail.
| `incompatible types: X cannot be converted to Y` | Yanlış tip, eksik cast | Açık cast ekle veya tipi düzelt |
| `method X in class Y cannot be applied to given types` | Yanlış argüman tipleri veya sayısı | Argümanları düzelt veya overload'ları kontrol et |
| `variable X might not have been initialized` | İlklendirilmemiş yerel değişken | Kullanmadan önce değişkeni ilklendirin |
| `non-static method X cannot be referenced from a static context` | Instance metod statik olarak çağrılıyor | Instance oluştur veya metodu statik yap |
| `reached end of file while parsing` | Eksik kapanış parantezi | Eksik `}` ekle |
| `package X does not exist` | Eksik dependency veya yanlış import | `pom.xml`/`build.gradle`'a dependency ekle |
| `error: cannot access X, class file not found` | Eksik geçişli dependency | Açık dependency ekle |
| `Annotation processor threw uncaught exception` | Lombok/MapStruct yanlış konfigürasyon | Annotation processor kurulumunu kontrol et |
| `Could not resolve: group:artifact:version` | Eksik repository veya yanlış versiyon | Repository ekle veya POM'da versiyonu düzelt |
| `The following artifacts could not be resolved` | Private repo veya ağ sorunu | Repository credential'larını veya `settings.xml`'i kontrol et |
| `COMPILATION ERROR: Source option X is no longer supported` | Java versiyon uyumsuzluğu | `maven.compiler.source` / `targetCompatibility`'yi güncelle |