XSD for XP7 model

Hi,

Is there a new version of the model XSD in XP7?

I have the following namespace defined in for my site, pages etc:

<site xmlns="urn:enonic:xp:model:1.0">

While upgrading to XP7, my IDE starts complaining about the new form element in my XML files.

Did you rebuild your app after migrating to XP7? The XSD schema was changed for XP7.0 but it’s located in the same place, so after you have rebuilt the app your lib dependencies should have been updated with XP7-versions and validation should work properly.

If that doesn’t work for you, you can add this to your build.gradle:

dependencies {
  compile 'com.enonic.xp:core-api:${xpVersion}'
}

Remember to clean build to make sure you don’t have any old dependencies remaining.

Here’s the current schema, just in case: https://github.com/enonic/xp/blob/master/modules/core/core-api/src/main/resources/META-INF/xsd/model.xsd.

2 Likes

Thanks for your reply. I already had the compile dependency in my build.gradle and had run clean build from the terminal, but I realized that my Gradle settings in IntelliJ was using gradle from the wrong place and therefore were pointing at the old 6.15 libs. I had to configure IntelliJ to use Gradle from 'wrapper' task in Gradle build script:

Now the schema validation works like a charm :slight_smile:

1 Like

Yes, that explains it :slight_smile: