1

I am trying to add JodaTime plugin into my Grails application but it's giving error. I added plugins into BuildConfig like

 plugins {
    compile ":joda-time:1.9"
 }

After downloading it's giving error.

**Error Snap**

Cœur
  • 37,241
  • 25
  • 195
  • 267
Ranjan
  • 929
  • 1
  • 6
  • 19

1 Answers1

0

You have to add the Group id:

// https://mvnrepository.com/artifact/joda-time/joda-time
compile group: 'joda-time', name: 'joda-time', version: '2.9'

In maven repo is no no Version 1.9 available. Think you mean 2.9

Jens
  • 67,715
  • 15
  • 98
  • 113