artifactId perspective-gateway, perspective-common not found in 8.3?

I try to compile a module from 8.1 to 8.3 and perspective artifact can’t be found ?

What repository are you pointing at?

   <pluginRepositories>
        <pluginRepository>
            <id>releases</id>
            <url>https://nexus.inductiveautomation.com/repository/inductiveautomation-releases</url>
            <releases>
                <enabled>true</enabled>
                <updatePolicy>always</updatePolicy>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>

    <repositories>
        <repository>
            <id>releases</id>
            <url>https://nexus.inductiveautomation.com/repository/inductiveautomation-releases</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <releases>
                <enabled>true</enabled>
                <updatePolicy>always</updatePolicy>
            </releases>
        </repository>

        <repository>
            <id>snapshots</id>
            <url>https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots</url>
            <snapshots>
                <enabled>true</enabled>
                <updatePolicy>always</updatePolicy>
            </snapshots>
            <releases>
                <enabled>false</enabled>
            </releases>
        </repository>

        <repository>
            <id>thirdparty</id>
            <url>https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty</url>
            <releases>
                <enabled>true</enabled>
                <updatePolicy>always</updatePolicy>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>

I think you need to have the beta repository configured:

    <repository>
      <id>ia-beta</id>
      <url>https://nexus.inductiveautomation.com/repository/inductiveautomation-beta</url>
    </repository>

oops sorry..

just check another module where I added

<repository>
    <id>ia-beta</id>
    <url>https://nexus.inductiveautomation.com/repository/inductiveautomation-beta</url>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>